
@font-face {
    font-family: 'Gilroy';
    src: url('../gilroy/Gilroy-Light.ttf') format('truetype');
    font-weight: 300; /* Light için ağırlık */
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Gilroy';
  
    src: url('../gilroy/Gilroy-Regular.ttf') format('truetype');
    font-weight: 900; 
    font-style: normal;
    font-display: swap;
}

.details-section {
    width: 100%;
    padding: 100px 0;
    box-sizing: border-box;
    font-family: 'Gilroy', sans-serif; 
    background-color: #f8f8f8; 
}

.details-container {
    max-width: 1450px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 80px;
    align-items: flex-start;
}


.slogan-column .main-title {
    font-size: 40px;
    line-height: 1.1;
    font-weight: 900; 
    color: #1a1a1a;
    margin-bottom: 25px;
    max-width: 90%;
}
.slogan-column p {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    max-width: 80%;
    font-weight: 300; 
}


.features-column {
    display: flex;
    flex-direction: column;
    gap: 30px; 
    padding-top: 20px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    padding-bottom: 30px;
    border-bottom: 1px solid #e0e0e0; 
}


.features-column .feature-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.feature-icon-wrapper {
    margin-right: 20px;
    flex-shrink: 0;
}

.feature-icon-wrapper svg {
    width: 32px;
    height: 32px;
    stroke: #1a1a1a;
    stroke-width: 1.2;
    fill: none;
}

.feature-content h4 {
    font-size: 16px;
    font-weight: 900; 
    color: #1a1a1a;
    margin: 0 0 5px 0;
}
.feature-content p {
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin: 0;
    font-weight: 300; 
}



@media (max-width: 768px) {
    .details-section {
        padding: 50px 0;
    }
    .details-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 0 15px;
    }
    
    .slogan-column .main-title {
        font-size: 38px;
        max-width: 100%;
    }
    .slogan-column p {
        max-width: 100%;
        margin-bottom: 0;
    }
    
    .features-column {
        padding-top: 0;
    }
    
    .feature-item {
        padding-bottom: 20px;
    }
    .feature-icon-wrapper svg {
        width: 28px;
        height: 28px;
    }
}