        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 60px;
        }

        .service-card {
            background: #fff;
            padding: 30px;
            border: 1px solid var(--border-color);
            border-radius: 12px;
            box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
            transition: transform 0.3s, box-shadow 0.3s;
            text-align: center;
        }

        .service-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
        }

        .service-card h2 {
            font-size: 20px;
            color: #2d3958;
            margin-bottom: 12px;
        }

        .service-card p {
            color: #555;
            font-size: 16px;
            line-height: 1.6;
        }

        .services-section {
            padding: 100px 0;
        }

        .services-section .section-title {
            font-size: 36px;
            text-align: center;
            margin-bottom: 20px;
        }

        .services-section .section-desc {
            font-size: 18px;
            text-align: center;
            max-width: 720px;
            margin: 0 auto 60px;
            color: #666;
        }

        .services-section i {
            font-size: 30px;
            margin-bottom: 10px;
            color: var(--green)
        }

        .service-intro-section {
            background: linear-gradient(115deg, #f4f9ff 75%, #fff 100%);
            padding: 64px 0 44px 0;
            border-radius: 24px;
            box-shadow: 0 8px 40px 0 rgba(92, 141, 247, 0.07);
            margin-bottom: 52px;
        }

        .intro-flex {
            display: flex;
            gap: 44px;
            flex-wrap: wrap;
            margin-top: 27px;
        }

        .intro-text {
            flex: 1 1 340px;
            min-width: 260px;
        }

        .intro-text h3 {
            font-size: 1.33em;
            font-weight: 700;
            color: var(--green);
            margin-bottom: 18px;
        }

        .intro-features {
            margin-top: 28px;
            margin-bottom: 0;
            padding-left: 20px;
            color: #377d4d;
            font-weight: 600;
            font-size: 1.03em;
        }

        .intro-features li {
            margin-bottom: 10px;
            list-style: disc inside;
            padding-left: 6px;
        }

        .intro-img {
            flex: 0 0 420px;
            max-width: 420px;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 32px rgba(92, 141, 247, .11);
        }

        .intro-img img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 18px;
        }

        @media (max-width:900px) {
            .intro-flex {
                flex-direction: column;
                gap: 22px;
            }

            .intro-img {
                max-width: 100%;
                flex: 0;
            }

            .intro-text h3 {
                font-size: 17px;
            }

            .intro-features {
                padding: 0;
            }
        }

        .venue-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
            gap: 26px;
            margin-top: 18px;
            margin-bottom: 8px;
        }

        .venue-gallery figure {
            background: #fff;
            border-radius: 13px;
            box-shadow: 0 2px 18px rgba(92, 141, 247, 0.10);
            overflow: hidden;
            margin: 0;
            padding: 0;
            transition: box-shadow .24s;
        }

        .venue-gallery figure:hover {
            box-shadow: 0 8px 24px rgba(22, 155, 71, 0.13);
        }

        .venue-gallery img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-bottom: 1px solid #f0f0f0;
            display: block;
        }

        .venue-gallery figcaption {
            font-size: 1.03em;
            color: #505b78;
            padding: 9px 16px 13px 16px;
        }

        .gallery-desc {
            max-width: 800px;
            margin: 0 auto 0 auto;
            text-align: center;
            font-size: 1.07em;
            color: #425058;
            margin-top: 22px;
        }

        /* === HIGHLIGHT (KONSEPTLER) BÖLÜMÜ === */
        .highlight-section {
            padding: 60px 0;
            background-color: #f8f9fc;
        }

        .highlight-boxes {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
            margin-top: 32px;
        }

        .highlight-box {
            background: white;
            border: 1px solid #eee;
            border-radius: 10px;
            padding: 24px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
            transition: all 0.3s ease;
        }

        .highlight-box:hover {
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
            transform: translateY(-3px);
        }

        .highlight-box h3 {
            margin-bottom: 10px;
            font-size: 18px;
            color: #5c8df7;
        }

        /* === TESTIMONIALS BÖLÜMÜ === */
        .testimonials-section {
            padding: 60px 0;
            background-color: #fff;
        }

        .testimonial-boxes {
            display: grid;
            gap: 32px;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            margin-top: 32px;
        }

        .testimonial-boxes blockquote {
            background: #f9f9ff;
            border-left: 4px solid #5c8df7;
            padding: 20px 24px;
            border-radius: 6px;
            font-style: italic;
            position: relative;
            box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
        }

        .testimonial-boxes cite {
            display: block;
            margin-top: 12px;
            font-weight: bold;
            color: #5c8df7;
            font-style: normal;
        }

        /* === GENEL UYUMLULUK (CTA vs. ile) === */
        .section-title {
            font-size: 28px;
            font-weight: 700;
            color: #1e2a38;
            margin-bottom: 16px;
            text-align: center;
        }

        .intro-features li::before {
            content: "✔";
            margin-right: 8px;
            color: #5c8df7;
        }

        /* Mobil uyum */
        @media (max-width: 768px) {

            .highlight-boxes,
            .testimonial-boxes {
                grid-template-columns: 1fr;
            }

            .intro-flex {
                flex-direction: column;
            }

            .intro-img {
                margin-top: 20px;
                text-align: center;
            }

            .intro-img img {
                max-width: 100%;
                height: auto;
            }
        }