* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: #f5f5f5;
    color: #333;
    line-height: 1.6;
    padding: 20px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

/* Logo / Başlık Alanı */
header {
    margin-top: 50px;
    margin-bottom: 30px;
}

.logo-text {
    font-size: 3rem;
    font-weight: 300;
    letter-spacing: 5px;
    text-transform: lowercase;
    margin-bottom: 5px;
}

.company-full-name {
    font-size: 1.2rem;
    font-weight: 300;
    color: #777;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

hr {
    border: 0;
    height: 1px;
    background: #e0e0e0;
    margin: 40px auto;
    width: 80%;
}

/* İletişim Bilgileri */
.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 300;
    color: #555;
    font-size: 19px;
}

.icon-circle {
    width: 35px;
    height: 35px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    font-size: 0.9rem;
}

.icon-circle svg{
    width: 20px;
    height: auto;
    overflow: inherit;
    fill: #1f1fd6;
}

.contact-row {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

/* Online Ödeme Butonu */
.payment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background-color: #1f1fd6; /* Turuncu */
    color: white;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: 10px;
    box-shadow: 0 4px 15px #1f1fd65c;
}

.payment-btn:hover {
    transform: translateY(-2px);
}

.payment-btn i {
    font-size: 1.1rem;
}

/* Hakkımızda Bölümü */
.about-section {
    margin-top: 60px;
    padding-bottom: 50px;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 20px;
    display: inline-block;
    border-bottom: 1px solid #333;
    padding-bottom: 5px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-weight: 300;
    font-size: 19px;
    color: #666;
    text-align: justify;
    text-align-last: center;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .logo-text {
        font-size: 2.2rem;
    }
    .contact-row {
        flex-direction: column;
        gap: 20px;
    }
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    .payment-btn {
        width: 80%;
        justify-content: center;
    }
}

@media(max-width:1024px){
	body {
	    zoom: 170%;
	}
}