:root {
    --primary: #f97316;
    --secondary: #fb923c;
    --accent: #ea580c;

    --white: #FFFFFF;
    --black: #000000;
    --gray-50: #fafaf9;
    --gray-100: #f5f5f4;
    --gray-200: #e7e5e4;
    --gray-300: #d6d3d1;
    --gray-400: #a8a29e;
    --gray-500: #78716c;
    --gray-600: #57534e;
    --gray-700: #44403c;
    --gray-800: #292524;
    --gray-900: #1c1917;

    --gradient-primary: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-dark: linear-gradient(135deg, #1c1917 0%, #292524 100%);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

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

body {
    background: var(--white);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--white);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1rem 0;
    z-index: 1000;
    background: linear-gradient(to bottom, rgba(27, 37, 49, 0.9), rgba(0, 0, 0, 0));
    backdrop-filter: blur(10px);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    width: 150px;
    margin-left: -2rem;
    z-index: 2;
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-links {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(27, 37, 49, 0.95);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 0.4rem;
    display: flex;
    gap: 0.2rem;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.4rem 0.8rem;
    border-radius: 30px;
}

.nav-links a.active {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent);
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.15);
    color: var(--accent);
}

.header-cta {
    background: var(--accent);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    z-index: 2;
}

.header-cta:hover {
    transform: translateY(-2px);
    background: var(--primary);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 0;
    color: var(--white);
    background: #1b2531;
    overflow: hidden;
    flex-direction: column;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(27, 37, 49, 0.3), rgba(27, 37, 49, 0.8));
    z-index: -1;
}

.hero-content {
    margin-top: 7rem;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-title {
    font-size: 50px;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
    text-align: center;
}

.hero-title .line {
    display: block;
    margin-bottom: 0.5rem;
    text-align: center;
    font-family: 'Unbounded', sans-serif;
}

.hero-title .highlight {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
    padding: 0 0.5rem;
    transform: rotate(+3deg);
    margin: 0 auto;
    justify-content: center;
    font-family: 'Unbounded', sans-serif;
    font-weight: 700;
}

.hero-title .highlight i {
    font-size: 50px;
    color: var(--white);
    background: var(--accent);
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 0.5rem;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    background: var(--accent);
    z-index: -1;
    transform: skew(-12deg);
    /* Alt çizgiyi eğik yap */
    opacity: 0.8;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    max-width: 800px;
    margin: 0 auto 3rem auto;
    text-align: center;
}

.cta-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    background: var(--primary);
}

.infinite-scroll-wrapper {
    width: 100%;
    margin-top: 4rem;
    overflow: hidden;
}

.infinite-scroll {
    width: 100%;
    display: flex;
    gap: 10px;
    position: relative;
    overflow: hidden;
}

.scroll-content {
    display: flex;
    gap: 10px;
    animation: scroll 7s linear infinite;
    flex-shrink: 0;
}

.scroll-content div {
    padding: 0.5rem;
    width: 150px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 30px;
    backdrop-filter: blur(8px);
}

.scroll-content div img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.about {
    background: linear-gradient(to bottom, #1b2531, #ffffff);
    padding: 100px 0 6rem 0;
    color: var(--white);
    position: relative;
    margin-top: 0;
    z-index: 1;
}

.about::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 0% 0%, #1b2531 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, #1b2531 0%, transparent 50%);
    opacity: 0.2;
    filter: blur(100px);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    margin: 0 auto;
}

.about-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.about-icon {
    margin-bottom: 1rem;
}

.about-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent);
    transition: all 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.about-card:hover .about-icon svg {
    transform: scale(1.1);
    stroke: var(--white);
}

.about-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.about-card p {
    color: var(--gray-300);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.about-card .btn {
    margin-top: auto;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    padding: 1.25rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--white);
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 2rem;
}

.submit-button:hover {
    transform: translateY(-2px);
    background: var(--primary);
}

.contact-form .container {
    display: flex;
    flex-direction: column;
    gap: 4rem;
}

.contact-form .section-header {
    width: 100%;
    max-width: 800px;
    margin: 0 auto 4rem auto;
}

.form-stats-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    width: 100%;
}

.contact-form-wrapper {
    margin: 0;
    padding: 0;
}

.stats-wrapper {
    padding: 0;
}

@media (max-width: 1024px) {
    .form-stats-wrapper {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .stats-wrapper {
        padding-top: 0;
    }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray-300);
    margin-bottom: 1.5rem;
}

.service-card .btn {
    margin-top: auto;
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
}

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent);
}

.service-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--accent);
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon svg {
    transform: scale(1.1);
    stroke: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.member-photo {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-info h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.member-motto {
    color: var(--accent);
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.member-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.member-social a {
    color: var(--gray-300);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.member-social a:hover {
    color: var(--accent);
}

@media (max-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    align-items: center;
}

.partner-logo {
    aspect-ratio: 3/2;
    padding: 1.5rem;
    background: rgba(255, 255, 255);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.partner-logo:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.08);
}

.contact-card h3 {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-card p {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.contact-card a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent);
}

.contact-card:nth-child(4) {
    grid-column: 1 / 2;
    grid-row: 2;
}

.contact-card:nth-child(5) {
    grid-column: 2 / 3;
    grid-row: 2;
}

.map-card {
    grid-column: 1 / -1;
    grid-row: 3;
    height: 300px;
    padding: 0;
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }

    .contact-card:nth-child(4),
    .contact-card:nth-child(5),
    .map-card {
        grid-column: 1;
    }
}

.footer {
    background: #1b2531;
    padding: 4rem 0 2rem;
    color: var(--white);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand p {
    color: var(--gray-300);
    margin: 1rem 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-col h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    color: var(--gray-300);
    font-size: 0.9rem;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-tag {
    color: var(--accent);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: block;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
}

.section-desc {
    color: var(--gray-300);
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
}

section {
    padding: 4rem 0;
    background: #1b2531;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(27, 37, 49, 0.3), rgba(27, 37, 49, 0.8));
    z-index: -1;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        bottom: 2rem;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        justify-content: center;
        padding: 1rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }

    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

    .footer-links {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .section-header h2,
    .about h2,
    .services h2,
    .expertise h2,
    .team h2,
    .partners h2,
    .contact h2,
    .contact-section h2 {
        font-size: 1.5rem;
    }
}

.card-base {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all 0.3s ease;
}

.hover-lift {
    transition: transform 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
}

.section-spacing {
    padding: 6rem 0;
}

.grid-base {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

.service-card h3,
.service-card p,
.section-header h2 {
    color: var(--white);
}

body {
    color: var(--white);
}

.form-group label {
    color: var(--white);
}

.service-card {
    background: rgba(255, 255, 255, 0.1);
}

.service-card p {
    color: var(--gray-300);
}

.about-card p {
    color: var(--gray-300);
}

.member-motto {
    color: var(--gray-300);
}

.contact-card p {
    color: var(--white);
}

.footer {
    color: var(--white);
}

.footer-brand p {
    color: var(--gray-300);
}

.footer-col ul li a {
    color: var(--white);
}

.footer-bottom p {
    color: var(--gray-300);
}

.section-desc {
    color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--white);
}

p {
    color: var(--gray-300);
}

a {
    color: var(--white);
}

a:hover {
    color: var(--accent);
}

.section-header h2,
.about h2,
.services h2,
.expertise h2,
.team h2,
.partners h2,
.contact h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
}

.contact-section h2 {
    font-family: 'Unbounded', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: -1px;
    text-align: center;
}

.stats-grid {
    display: grid;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.stat-card h3 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: 'Unbounded', sans-serif;
}

.stat-card p {
    font-size: 1.1rem;
    color: var(--white);
    font-weight: 500;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-card h3 {
        font-size: 2.5rem;
    }
    
    .stat-card p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.achievements-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4rem;
    padding: 4rem 0;
}

.achievement-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: 3rem;
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.achievement-number {
    font-family: 'Unbounded', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.achievement-number .currency,
.achievement-number .symbol {
    font-size: 3rem;
    opacity: 0.9;
}

.achievement-card h3 {
    font-family: 'Unbounded', sans-serif;
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.achievement-card p {
    color: var(--gray-300);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 90%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .achievements-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .achievement-number {
        font-size: 4rem;
    }
    
    .achievement-number .currency,
    .achievement-number .symbol {
        font-size: 2.5rem;
    }
}

.faq-section {
    padding: 4rem 0;
    background: var(--gray-900);
}

.accordion {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin: 0 auto;
}

.accordion-item {
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: fit-content;
}

.accordion-item:nth-child(odd) {
    transform: translateX(-20px);
}

.accordion-item:nth-child(even) {
    transform: translateX(20px);
}

.accordion-header {
    width: 100%;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 500;
    text-align: left;
    cursor: pointer;
    transition: all 0.3s ease;
}

.accordion-header:hover {
    background: rgba(255, 255, 255, 0.1);
}

.accordion-header i {
    transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
    transform: rotate(45deg);
}

.accordion-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item.active .accordion-content {
    padding: 1.5rem;
    max-height: 500px;
}

.accordion-content p {
    color: var(--gray-300);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .accordion {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .accordion-item:nth-child(odd),
    .accordion-item:nth-child(even) {
        transform: none;
    }
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

h1 {
    text-align: center;
    width: 100%;
    margin-bottom: 2rem;
    font-size: 2.5rem;
    color: var(--white);
    font-family: 'Unbounded', sans-serif;
}