:root {
    --primary-color: #22c55e;
    --secondary-color: #16a34a;
    --accent-color: #4ade80;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --gray-color: #64748b;
    --success-color: #22c55e;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --transition: all 0.3s ease;
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --gradient: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    line-height: 1.6;
    color: var(--dark-color);
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 5%;
    background: rgba(255, 255, 255, 0.95);
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow);
    z-index: 1000;
    backdrop-filter: blur(10px);
    animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.logo img {
    height: 60px;
    transition: var(--transition);
}

.logo img:hover {
    transform: scale(1.05);
}

.nav-links a {
    color: var(--dark-color);
    text-decoration: none;
    margin-left: 2rem;
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a.active {
    color: var(--primary-color);
}

.nav-links a.active::after {
    width: 100%;
}

.btn-login {
    background: var(--primary-color);
    color: white !important;
    padding: 0.5rem 1.5rem !important;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-login:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.mobile-menu {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark-color);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    background: url('images/ball.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    text-align: left;
    padding: 2rem 0 2rem 7vw;
    position: relative;
    color: var(--white);
    overflow: hidden;
}

.hero::before {
    content: none;
}

.hero-content {
    color: #222;
    max-width: 600px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
    background: rgba(255,255,255,0.92);
    border-radius: 32px;
    box-shadow: 0 8px 32px 0 rgba(34, 197, 94, 0.15);
    padding: 3rem 2.5rem;
    backdrop-filter: blur(2px);
    text-align: left;
}

.hero-content h1,
.hero-content p {
    color: #222;
    text-shadow: none;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content h1 {
    font-size: 3.2rem;
    font-weight: 800;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    margin-bottom: 1.2rem;
    text-shadow: 0 2px 8px rgba(34,197,94,0.10);
}

.hero p {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    font-weight: 500;
}

.hero-content .hero-stats {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 2.5rem;
    margin-top: 2.5rem;
    margin-bottom: 0.5rem;
    width: 100%;
}

.hero-content .stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: none;
    box-shadow: none;
    padding: 0;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
    filter: drop-shadow(0 2px 8px rgba(34,197,94,0.10));
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

.app-badges {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: center;
}

.app-badge img {
    height: 40px;
    transition: var(--transition);
}

.app-badge:hover img {
    transform: translateY(-2px);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: var(--transition);
    margin: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn.primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.3);
}

.btn.secondary {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(34, 197, 94, 0.1);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(34, 197, 94, 0.4);
}

/* Features Section */
.features {
    padding: 5rem 1rem;
    background: var(--light-color);
}

.features h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.feature-card:hover::before {
    opacity: 0.05;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.feature-card h3 {
    color: var(--dark-color);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.feature-card p {
    color: #666;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 5rem 1rem;
    background: white;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

/* Contact Section */
.contact {
    padding: 5rem 1rem;
    background: var(--light-color);
}

.contact h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition);
    background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.1);
    transform: translateY(-2px);
}

.contact-form textarea {
    height: 150px;
    resize: vertical;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 2rem 1rem;
    text-align: center;
}

.social-links {
    margin-bottom: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
    display: inline-block;
}

.social-links a:hover {
    color: var(--primary-color);
    transform: translateY(-3px) rotate(5deg);
}

.social-links a::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.social-links a:hover::after {
    transform: scaleX(1);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero-content .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero {
        align-items: center;
        text-align: center;
        padding: 2rem 1rem;
    }
    .hero-content {
        margin: 0 auto;
        text-align: center;
        padding: 2rem 1rem;
    }
}

@media (max-width: 700px) {
    .hero-content .hero-stats {
        flex-direction: column;
        gap: 1.2rem;
        align-items: center;
    }
    .hero-content .cta-buttons {
        justify-content: center;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeIn 1s ease-out;
}

/* How It Works Section */
.how-it-works {
    padding: 5rem 1rem;
    background: white;
    text-align: center;
}

.how-it-works h2 {
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.steps-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.step {
    position: relative;
    padding: 2.5rem 2rem 2rem;
    background: var(--light-color);
    border-radius: 15px;
    transition: var(--transition);
    overflow: hidden;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.step:hover::after {
    transform: scaleX(1);
}

.step-number {
    position: static;
    margin: 0 auto 1rem auto;
    width: 50px;
    height: 50px;
    background: var(--gradient);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.5rem;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
    animation: pulse 2s infinite;
    border: 3px solid white;
    z-index: 2;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0.4);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(46, 204, 113, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(46, 204, 113, 0);
    }
}

.step i {
    font-size: 3rem;
    color: var(--primary-color);
    margin: 0 0 1.5rem 0;
    position: relative;
    z-index: 1;
}

.step h3 {
    margin: 1rem 0;
    color: var(--dark-color);
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
}

.step p {
    color: #666;
    position: relative;
    z-index: 1;
}

/* Details Section */
.details {
    padding: 5rem 1rem;
    background: var(--light-color);
}

.details-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.details-content {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.details-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: var(--transition);
}

.details-content:hover::before {
    transform: scaleX(1);
}

.details-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(46, 204, 113, 0.1);
}

.details-content h2 {
    color: var(--dark-color);
    margin-bottom: 2rem;
    text-align: center;
}

.details-content ul {
    list-style: none;
    margin-bottom: 2rem;
}

.details-content ul li {
    margin: 1rem 0;
    display: flex;
    align-items: center;
    color: #666;
    transition: var(--transition);
}

.details-content ul li:hover {
    transform: translateX(10px);
    color: var(--dark-color);
}

.details-content ul li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
    transition: var(--transition);
}

.details-content ul li:hover i {
    transform: scale(1.2);
    color: var(--secondary-color);
}

.details-content .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .details-container {
        grid-template-columns: 1fr;
    }

    .details-content {
        padding: 2rem;
    }
}

/* Courts Section */
.courts {
    padding: 5rem 1rem;
    background: var(--light-color);
}

.courts h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

.courts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.court-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(34, 197, 94, 0.1);
    position: relative;
}

.court-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient);
    opacity: 0;
    transition: var(--transition);
    z-index: 0;
}

.court-card:hover::before {
    opacity: 0.05;
}

.court-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.court-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.court-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.court-card:hover .court-image img {
    transform: scale(1.1);
}

.court-rating {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(255, 255, 255, 0.95);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--warning-color);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(5px);
}

.court-info {
    padding: 2rem;
    position: relative;
    z-index: 1;
}

.court-info h3 {
    margin-bottom: 0.8rem;
    color: var(--dark-color);
    font-size: 1.4rem;
    font-weight: 600;
}

.court-info p {
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.court-info p i {
    color: var(--primary-color);
}

.court-features {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.court-features span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    color: var(--gray-color);
    background: var(--light-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: var(--transition);
}

.court-features span:hover {
    background: var(--primary-color);
    color: white;
}

.court-features span i {
    font-size: 1.1rem;
}

.court-card .btn {
    width: 100%;
    text-align: center;
    background: var(--primary-color);
    color: white;
    padding: 1rem;
    border-radius: 12px;
    font-weight: 600;
    transition: var(--transition);
}

.court-card .btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.court-price {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.court-price .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.court-price .duration {
    font-size: 1rem;
    color: var(--gray-color);
}

.newsletter {
    background: var(--gradient);
    padding: 5rem 1rem;
    color: white;
    text-align: center;
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    margin-bottom: 1rem;
}

.newsletter p {
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form .btn {
    padding: 1rem 2rem;
    background: white;
    color: var(--primary-color);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--gray-color);
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--gray-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    overflow: auto;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(2px);
    justify-content: center;
    align-items: center;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: rgba(255,255,255,0.85);
    margin: auto;
    padding: 2.5rem 2rem 2rem 2rem;
    border-radius: 32px;
    box-shadow: 0 12px 40px 0 rgba(34, 197, 94, 0.18), 0 1.5px 8px 0 rgba(30,41,59,0.10);
    text-align: center;
    position: relative;
    min-width: 320px;
    max-width: 95vw;
    animation: fadeInModal 0.3s ease;
    backdrop-filter: blur(12px) saturate(1.2);
    border: 1.5px solid rgba(34,197,94,0.10);
    background-image: linear-gradient(135deg, rgba(34,197,94,0.08) 0%, rgba(255,255,255,0.85) 100%);
}

.modal-content h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 1.2rem;
    letter-spacing: -1px;
}

.modal-content p {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 500;
}

.modal-buttons .btn {
    font-size: 1.25rem !important;
    padding: 1.1rem 2.2rem !important;
    border-radius: 16px !important;
    box-shadow: 0 4px 16px rgba(34,197,94,0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    margin: 0.5rem 0.5rem;
    font-weight: 700;
    transition: transform 0.15s, box-shadow 0.15s;
}

.modal-buttons .btn.primary {
    background: linear-gradient(90deg, #22c55e 0%, #16a34a 100%);
    color: #fff;
}

.modal-buttons .btn.secondary {
    background: #222;
    color: #fff;
    border: none;
}

.modal-buttons .btn:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 8px 32px rgba(34,197,94,0.18);
}

.close-modal {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    color: #22c55e;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.2s, transform 0.2s;
    z-index: 2;
}
.close-modal:hover {
    color: #ef4444;
    transform: scale(1.15) rotate(8deg);
}

.modal-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

@media (max-width: 600px) {
    .modal-content {
        padding: 1.5rem 0.5rem 1.5rem 0.5rem;
        min-width: 0;
    }
    .modal-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }
}

.hero-bg-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
    z-index: 0;
}

.hero-bg.active {
    opacity: 1;
    z-index: 1;
}

/* Section başlıklarının navbar altında kalmaması için */
#anasayfa, #nasil-calisir, #ozellikler, #sahalar, #iletisim, #hakkimizda, .features, .about, .contact, .courts {
    scroll-margin-top: 100px;
}

.hero-content .cta-buttons {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}
.hero-content .cta-buttons .btn {
    font-size: 1.25rem;
    padding: 1.2rem 2.8rem;
    min-width: 140px;
}

.policy-main {
    min-height: 70vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #f8fafc;
    padding: 4rem 0 4rem 0;
}
.policy-container {
    background: #fff;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(30,41,59,0.10);
    padding: 2.8rem 2.2rem 2.2rem 2.2rem;
    max-width: 600px;
    width: 100%;
    margin: 2.5rem auto 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.policy-container h1 {
    font-size: 2.3rem;
    font-weight: 800;
    color: #22c55e;
    margin-bottom: 2.2rem;
    text-align: center;
    letter-spacing: -1px;
}
.policy-content {
    width: 100%;
    margin: 0 auto;
}
.policy-content h2 {
    font-size: 1.25rem;
    color: #16a34a;
    margin-top: 2.2rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
    text-align: left;
}
.policy-content p, .policy-content ul {
    color: #222;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.policy-content ul {
    padding-left: 1.5rem;
    margin-bottom: 1.7rem;
}
.policy-content ul li {
    margin-bottom: 0.5rem;
    list-style: disc;
}
@media (max-width: 700px) {
    .policy-container {
        padding: 1.2rem 0.5rem 1.2rem 0.5rem;
        max-width: 98vw;
    }
    .policy-main {
        padding: 2rem 0 2rem 0;
    }
    .policy-container h1 {
        font-size: 1.5rem;
    }
    .policy-content h2 {
        font-size: 1.05rem;
    }
}