/* Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

a {
    text-decoration: none;
}

/* Üst Bilgi Kısmı */
.top-info {
    background-color: #b10000;
    color: white;
    padding: 8px 0;
    font-size: 14px;
}

.top-info p {
    text-align: center;
}

.top-info a {
    color: white;
    font-weight: bold;
}

/* Navbar */
.navbar {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b10000;
}

.menu-icon {
    display: none;
    font-size: 24px;
    cursor: pointer;
    color: #333;
}

.menu-icon i {
    transition: all 0.3s ease;
}

/* Navbar aktif olduğunda gösterme ayarları */
.nav-links.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Slider Bölümü */
.slider-section {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.slider-container {
    width: 100%;
    position: relative;
}

.slide {
    display: none;
    width: 100%;
    position: relative;
}

.slide img {
    width: 100%;
    height: 70vh;
    object-fit: cover;
    display: block;
}

/* Karartma Efekti */
.slide::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Karartma seviyesi */
    z-index: 1;
}

.slide-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    width: 80%;
    max-width: 800px;
}

.slide-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.slide-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #b10000;
    color: white;
    border-radius: 5px;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #000000;
}

/* Slider Navigasyon Düğmeleri */
.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    width: auto;
    margin-top: -22px;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 24px;
    transition: 0.6s ease;
    border-radius: 0 5px 5px 0;
    user-select: none;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.3);
}

.next {
    right: 0;
    border-radius: 5px 0 0 5px;
}

.prev:hover, .next:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Gösterge Noktaları */
.dots-container {
    text-align: center;
    margin-top: -30px;
    position: relative;
    z-index: 10;
}

.dot {
    cursor: pointer;
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

.active, .dot:hover {
    background-color: #b10000;
;
}

/* Fade Animasyonu */
.fade {
    animation-name: fade;
    animation-duration: 1.5s;
}

@keyframes fade {
    from {opacity: .4}
    to {opacity: 1}
}

/* Özellik Kutuları Bölümü */
.features-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.feature-box {
    background-color: white;
    padding: 30px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 40px;
    color: #b10000;
    background-color: rgba(0, 77, 153, 0.1);
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    display: inline-block;
}

.feature-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #333;
}

.feature-box p {
    color: #666;
    line-height: 1.6;
    font-size: 16px;
}


                                                              /* Sabit İletişim İkonları */
.contact-icons {
    position: fixed;
    z-index: 1000;
    top: 80%;
    width: 100%;
    pointer-events: none;
}

.contact-icon {
    position: absolute;
    display: flex;
    align-items: center;
    pointer-events: auto;
}

.icon-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.icon-container i {
    font-size: 28px;
    color: white;
}

/* Telefon İkonu - Sol Taraf */
.phone-icon {
    left: 20px;
    transform: translateY(-50%);
}

.phone-icon .icon-container {
    background-color: #004d99;
}

/* WhatsApp İkonu - Sağ Taraf */
.whatsapp-icon {
    right: 20px;
    transform: translateY(-50%);
}

.whatsapp-icon .icon-container {
    background-color: #25D366;
}

/* Animasyon */
@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
    50% {
        transform: scale(1.1);
        box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
    }
    100% {
        transform: scale(1);
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    }
}

/* Tooltip */
.icon-tooltip {
    position: absolute;
    background-color: #333;
    color: white;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.phone-icon .icon-tooltip {
    left: 75px;
}

.whatsapp-icon .icon-tooltip {
    right: 75px;
}

.contact-icon:hover .icon-tooltip {
    opacity: 1;
    visibility: visible;
}

.contact-icon:hover .icon-container {
    transform: scale(1.15);
}


/* Hizmetler Bölümü */
/* Hizmetler Bölümü */
/* Hizmetler Bölümü - Geliştirilmiş Sürüm */
.services-section {
    padding: 80px 0;
    background-color: #fff; /* Beyaz arkaplan */
    color: #333;
}

.section-header {
    margin-bottom: 50px;
    text-align: left; /* Sola hizalı başlık */
}

.section-header h2 {
    font-size: 36px;
    color: #ff0000; /* Kırmızı yazı rengi */
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.section-line {
    width: 100px;
    height: 3px;
    background-color: #ff0000; /* Kırmızı çizgi */
    margin-left: 0; /* Sola hizalamak için */
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 sütun */
    gap: 30px;
}

.service-card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    aspect-ratio: 1/1.3; /* Kare benzeri ama biraz daha dikey */
    display: flex;
    flex-direction: column;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.service-image {
    height: 45%;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.service-card:hover .service-image img {
    transform: scale(1.1);
}

.service-content {
    padding: 25px;
    color: #333;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #000;
    position: relative;
    padding-bottom: 15px;
    text-align: center;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background-color: #ff0000;
}

.service-text {
    color: #666;
    line-height: 1.7;
    text-align: center;
    flex-grow: 1;
    margin-top: 10px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 6;
    -webkit-box-orient: vertical;
}

.service-empty {
    text-align: center;
    padding: 40px;
    background-color: #fff;
    border-radius: 10px;
    grid-column: 1 / -1;
    font-size: 18px;
    color: #666;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Hizmet Bölgelerimiz Section */
/* Hizmet Bölgelerimiz Section */
.service-areas-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.service-areas-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.service-areas-map {
    flex: 1;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-areas-map iframe {
    display: block;
    border-radius: 10px;
    width: 100%;
    height: 450px;
    border: 0;
}

.service-areas-text {
    flex: 1;
}

.service-areas-text h2 {
    font-size: 36px;
    color: #000;
    margin-bottom: 20px;
    position: relative;
}

.service-areas-text .section-line {
    width: 100px;
    height: 3px;
    background-color: #ff0000;
    margin-bottom: 25px;
}

.service-areas-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Firmamız Hakkında Section */
.about-company-section {
    padding: 80px 0;
    background-color: #fff;
}

.about-company-content {
    max-width: 1000px;
    margin: 0 auto;
}

.text-center {
    text-align: center;
}

.section-line.center {
    margin: 0 auto;
}

.about-company-text {
    margin-top: 40px;
}

.about-company-text p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
    text-align: justify;
}

.company-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background-color: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    color: #ff0000;
    font-size: 24px;
    min-width: 30px;
}

.feature-text h4 {
    color: #333;
    margin-bottom: 8px;
    font-size: 18px;
}

.feature-text p {
    color: #666;
    line-height: 1.6;
    margin: 0;
    font-size: 15px;
}

/* Bilgi Blokları Bölümü */
.info-blocks-section {
    padding: 80px 0;
    background-color: #fff;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.info-block {
    width: 100%;
    padding: 40px;
    border-radius: 5px;
    background-color: #f9f9f9;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-block:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.info-block-title {
    color: #ff0000;
    font-size: 28px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(255, 0, 0, 0.2);
}

.info-block-content {
    color: #333;
    line-height: 1.8;
    font-size: 16px;
}

.info-block-content p {
    margin-bottom: 15px;
}

.info-block-content p:last-child {
    margin-bottom: 0;
}

/* Firma Sahipleri Bölümü */
.owners-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.section-header.text-center {
    text-align: center;
}

.section-line.center {
    margin: 0 auto;
}

.owners-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 50px;
}

.owner-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    display: flex;
    align-items: center;
    width: 360px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.owner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.owner-icon {
    width: 70px;
    height: 70px;
    background-color: #ff0000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.owner-icon i {
    color: white;
    font-size: 30px;
}

.owner-details {
    flex-grow: 1;
}

.owner-details h3 {
    color: #333;
    font-size: 20px;
    margin-bottom: 5px;
}

.owner-title {
    color: #666;
    font-size: 14px;
    margin-bottom: 10px;
}

.owner-phone {
    display: inline-flex;
    align-items: center;
    color: #ff0000;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s;
}

.owner-phone i {
    margin-right: 8px;
}

.owner-phone:hover {
    color: #b10000;
}

/* Responsive tasarım */
@media screen and (max-width: 768px) {
    .owners-grid {
        justify-content: center;
    }
    
    .owner-card {
        width: 100%;
        max-width: 360px;
    }
}

@media screen and (max-width: 576px) {
    .owners-section {
        padding: 50px 0;
    }
    
    .owner-card {
        padding: 20px;
    }
    
    .owner-icon {
        width: 60px;
        height: 60px;
    }
    
    .owner-icon i {
        font-size: 24px;
    }
    
    .owner-details h3 {
        font-size: 18px;
    }
}

/* Footer Stilleri */
.footer {
    background-color: #222;
    color: #ddd;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.footer-info {
    flex: 1;
}

.footer h3 {
    color: #ff0000;
    font-size: 18px;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #ff0000;
}

.footer-contacts {
    list-style: none;
    margin-bottom: 30px;
}

.footer-contacts li {
    margin-bottom: 12px;
}

.contact-name {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 3px;
}

.contact-phone {
    color: #ddd;
    transition: color 0.3s;
}

.contact-phone i {
    margin-right: 5px;
    color: #ff0000;
}

.contact-phone:hover {
    color: #ff0000;
}

.footer-address, .footer-email {
    margin-bottom: 30px;
}

.footer-address p, .footer-email p {
    display: flex;
    align-items: flex-start;
    line-height: 1.6;
}

.footer-address i, .footer-email i {
    color: #ff0000;
    margin-right: 10px;
    margin-top: 3px;
}

.footer-email a {
    color: #ddd;
    transition: color 0.3s;
}

.footer-email a:hover {
    color: #ff0000;
}

.footer-map {
    flex: 1;
}

.map-container {
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
}

/* İletişim Sayfası Stilleri */
/* İletişim Sayfası Stilleri */
.contact-section {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.text-center {
    text-align: center;
}

.section-line.center {
    margin: 0 auto;
}

.contact-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 50px;
}

.contact-map {
    width: 100%;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.no-map {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #eee;
    color: #777;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.contact-info {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-info h3 {
    color: #ff0000;
    font-size: 20px;
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid rgba(255, 0, 0, 0.1);
}

.contact-info p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: #333;
    line-height: 1.6;
}

.contact-info i {
    color: #ff0000;
    margin-right: 10px;
    margin-top: 5px;
    min-width: 16px;
}

.contact-info a {
    color: #333;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #ff0000;
}

.contact-people {
    list-style: none;
}

.contact-people li {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-people li:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.person-name {
    font-weight: 500;
    margin-bottom: 5px;
    color: #333;
}

.person-title {
    font-weight: normal;
    color: #666;
    font-size: 14px;
}

.person-phone {
    display: flex;
    align-items: center;
    color: #555;
}

.person-phone i {
    margin-right: 8px;
}

/* Responsive Tasarım */
@media screen and (max-width: 992px) {
    .contact-details {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 576px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-map {
        height: 300px;
    }
    
    .contact-info {
        padding: 20px;
    }
    
    .contact-info h3 {
        font-size: 18px;
    }
}

/* Responsive Tasarım */
@media screen and (max-width: 992px) {
    .footer-content {
        flex-direction: column;
    }
    
    .footer-map {
        width: 100%;
    }
    
    .map-container {
        min-height: 250px;
    }
}

@media screen and (max-width: 576px) {
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer h3 {
        font-size: 16px;
    }
    
    .map-container {
        min-height: 200px;
    }
}

/* Responsive tasarım */
@media screen and (max-width: 768px) {
    .info-block {
        padding: 30px;
    }
    
    .info-block-title {
        font-size: 24px;
    }
}

@media screen and (max-width: 576px) {
    .info-blocks-section {
        padding: 50px 0;
    }
    
    .info-block {
        padding: 25px 20px;
    }
    
    .info-block-title {
        font-size: 22px;
        margin-bottom: 15px;
        padding-bottom: 10px;
    }
}

/* Responsive tasarım */
@media screen and (max-width: 768px) {
    .company-features {
        grid-template-columns: 1fr;
    }
    
    .about-company-text p {
        text-align: left;
    }
}

@media screen and (max-width: 576px) {
    .about-company-section {
        padding: 50px 0;
    }
    
    .feature-item {
        padding: 20px;
    }
}

/* Responsive tasarım */
@media screen and (max-width: 992px) {
    .service-areas-content {
        flex-direction: column;
    }
    
    .service-areas-map,
    .service-areas-text {
        width: 100%;
    }
    
    .service-areas-map iframe {
        height: 350px;
    }
}

@media screen and (max-width: 576px) {
    .service-areas-text h2 {
        font-size: 28px;
    }
    
    .service-areas-section {
        padding: 50px 0;
    }
    
    .service-areas-map iframe {
        height: 250px;
    }
}

@media screen and (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        aspect-ratio: auto;
        min-height: 400px;
    }
}

@media screen and (max-width: 576px) {
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
}


/* Responsive Tasarım */
@media screen and (max-width: 768px) {
    .menu-icon {
        display: block;
    }
    
    .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        box-shadow: 0 5px 5px rgba(0, 0, 0, 0.1);
        display: none; /* Varsayılan olarak gizli */
        padding: 10px 0;
        width: 100%;
    }
    
    .nav-links.active {
        display: flex !important; /* Aktif olduğunda kesinlikle görünür */
    }
    
    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .slide img {
        height: 50vh;
    }
    
    .slide-text h2 {
        font-size: 1.8rem;
    }
    
    .slide-text p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .prev, .next {
        padding: 12px;
        font-size: 18px;
    }
    .icon-container {
        width: 50px;
        height: 50px;
    }
    
    .icon-container i {
        font-size: 24px;
    }
    
    .phone-icon {
        left: 10px;
    }
    
    .whatsapp-icon {
        right: 10px;
    }
}

@media screen and (max-width: 480px) {
    .slide img {
        height: 40vh;
    }
    
    .slide-text h2 {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .slide-text p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .btn {
        padding: 8px 15px;
        font-size: 0.8rem;
    }
    .icon-container {
        width: 45px;
        height: 45px;
    }
    
    .icon-container i {
        font-size: 20px;
    }
    
    .icon-tooltip {
        display: none; /* Çok küçük ekranlarda tooltip'i gizle */
    }
}

@media screen and (max-width: 992px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-image {
        height: 200px;
    }
}

@media screen and (max-width: 576px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-box {
        padding: 25px 15px;
    }
    .section-header h2 {
        font-size: 28px;
    }
    
    .service-content {
        padding: 20px 15px;
    }
    
    .service-content h3 {
        font-size: 20px;
    }
}
