:root {
    --primary-teal: #033941;
    --accent-teal: #459a7e;
    --warm-gold: #cd9f53;
    --cream: #faf9f4;
    --dark-navy: #06262d;
    --light-teal: #e8f4f1;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Work Sans', sans-serif;
    color: var(--dark-navy);
    background-color: var(--cream);
    line-height: 1.6;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 50px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 60px;
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--primary-teal);
    font-weight: 500;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-teal);
}

.nav-links a.active {
    color: var(--warm-gold);
}

.nav-cta {
    background: var(--accent-teal);
    color: white !important;
    padding: 12px 25px;
    border-radius: 30px;
    transition: background 0.3s ease !important;
}

.nav-cta:hover {
    background: var(--primary-teal) !important;
}

/* Mobile Menu */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--primary-teal);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-navy) 100%);
    position: relative;
    overflow: hidden;
    padding-top: 90px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1200') center/cover;
    opacity: 0.3;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
    z-index: 2;
}

.hero-badge {
    display: inline-block;
    background: var(--warm-gold);
    color: var(--dark-navy);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 64px;
    font-weight: 700;
    color: white;
    line-height: 1.1;
    max-width: 700px;
    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--warm-gold);
}

.hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 550px;
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

/* Page Hero (smaller for inner pages) */
.page-hero {
    min-height: 40vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-teal) 0%, var(--dark-navy) 100%);
    position: relative;
    padding-top: 120px;
    padding-bottom: 60px;
}

.page-hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.page-hero p {
    font-size: 20px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

/* Buttons */
.btn-primary {
    background: var(--accent-teal);
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary:hover {
    background: var(--warm-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: white;
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid rgba(255,255,255,0.3);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    border-color: var(--warm-gold);
    color: var(--warm-gold);
}

.btn-outline {
    background: transparent;
    color: var(--primary-teal);
    padding: 18px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary-teal);
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-teal);
    color: white;
}

/* Stats Section */
.stats {
    background: white;
    padding: 80px 50px;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.stat-item {
    text-align: center;
    padding: 30px;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1;
    margin-bottom: 10px;
}

.stat-number span {
    color: var(--warm-gold);
}

.stat-label {
    font-size: 16px;
    color: var(--dark-navy);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Section Styling */
.section {
    padding: 100px 50px;
}

.section.white {
    background: white;
}

.section.cream {
    background: var(--cream);
}

.section.dark {
    background: var(--dark-navy);
}

.section.light-teal {
    background: var(--light-teal);
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-label {
    display: inline-block;
    color: var(--warm-gold);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.section.dark .section-header h2 {
    color: white;
}

.section-header p {
    font-size: 18px;
    color: #555;
    font-weight: 300;
}

.section.dark .section-header p {
    color: rgba(255,255,255,0.7);
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.15);
}

.about-image::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--warm-gold);
    border-radius: 20px;
    z-index: -1;
}

.about-content h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-teal);
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    font-weight: 300;
}

/* Services/Benefits Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card {
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.1);
}

.section.dark .service-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
}

.section.white .service-card,
.section.cream .service-card {
    background: white;
    border: 1px solid #eee;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.section.white .service-card:hover,
.section.cream .service-card:hover {
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    transform: translateY(-10px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-teal), var(--primary-teal));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    fill: white;
}

.service-card h3 {
    font-size: 22px;
    font-weight: 600;
    color: white;
    margin-bottom: 15px;
}

.section.white .service-card h3,
.section.cream .service-card h3 {
    color: var(--primary-teal);
}

.service-card p {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    font-weight: 300;
    line-height: 1.7;
}

.section.white .service-card p,
.section.cream .service-card p {
    color: #666;
}

/* Team/Hoopers Section */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
}

.team-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.team-card-image {
    height: 420px;
    background: linear-gradient(135deg, var(--primary-teal), var(--accent-teal));
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-card-image svg {
    width: 100px;
    height: 100px;
    fill: rgba(255,255,255,0.3);
}

.team-card-content {
    padding: 35px;
}

.team-card h3 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.team-card .role {
    font-size: 14px;
    color: var(--warm-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    display: block;
}

.team-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.team-card .interests {
    font-size: 14px;
    color: var(--accent-teal);
    font-style: italic;
}

/* Children Grid */
.children-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.child-card {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.child-card h4 {
    font-size: 20px;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.child-card .age {
    font-size: 14px;
    color: var(--warm-gold);
    margin-bottom: 15px;
    display: block;
}

.child-card p {
    font-size: 14px;
    color: #666;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-info h2 {
    font-size: 42px;
    font-weight: 700;
    color: var(--primary-teal);
    margin-bottom: 20px;
}

.contact-info > p {
    font-size: 18px;
    color: #555;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-teal);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 28px;
    height: 28px;
    fill: white;
}

.contact-details h4 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--warm-gold);
    margin-bottom: 5px;
}

.contact-details a,
.contact-details p {
    font-size: 18px;
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
    margin: 0;
}

.contact-details a:hover {
    color: var(--accent-teal);
}

.contact-form {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 28px;
    font-weight: 600;
    color: var(--primary-teal);
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-navy);
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 16px;
    font-family: 'Work Sans', sans-serif;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-teal);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn-primary {
    width: 100%;
}

/* Payments Section */
.payments-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.payment-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.payment-card:hover {
    border-color: var(--accent-teal);
    transform: translateY(-5px);
}

.payment-card h3 {
    font-size: 22px;
    color: var(--primary-teal);
    margin-bottom: 15px;
}

.payment-card p {
    font-size: 15px;
    color: #666;
    margin-bottom: 25px;
}

.payment-card .btn-primary {
    width: 100%;
}

.payment-notice {
    background: var(--dark-navy);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    margin-top: 50px;
}

.payment-notice p {
    font-size: 16px;
    margin: 0;
}

.payment-notice strong {
    color: var(--warm-gold);
}

/* House Rules */
.rules-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.rule-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.rule-number {
    width: 50px;
    height: 50px;
    background: var(--accent-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.rule-content h4 {
    font-size: 18px;
    color: var(--primary-teal);
    margin-bottom: 5px;
}

.rule-content p {
    font-size: 15px;
    color: #666;
}

/* Quote Block */
.quote-block {
    background: var(--primary-teal);
    padding: 60px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}

.quote-block p {
    font-size: 28px;
    color: white;
    font-style: italic;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}

.quote-block p span {
    color: var(--warm-gold);
}

/* Footer */
footer {
    background: var(--dark-navy);
    padding: 60px 50px 30px;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 60px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    margin-bottom: 30px;
}

.footer-logo img {
    height: 80px;
    margin-bottom: 20px;
}

.footer-logo p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-nav h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-nav ul {
    list-style: none;
}

.footer-nav li {
    margin-bottom: 12px;
}

.footer-nav a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--warm-gold);
}

.footer-contact h4 {
    color: white;
    font-size: 16px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-contact p {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    margin-bottom: 10px;
}

.footer-contact a {
    color: var(--warm-gold);
    text-decoration: none;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: var(--accent-teal);
}

.social-links svg {
    width: 20px;
    height: 20px;
    fill: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 14px;
}

.footer-bottom a {
    color: var(--warm-gold);
    text-decoration: none;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .children-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1024px) {
    .nav-container {
        padding: 0 30px;
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        max-width: 350px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 40px 40px;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        border-bottom: 1px solid #eee;
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 16px;
    }

    .nav-links .nav-cta {
        margin-top: 20px;
        text-align: center;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero h1 {
        font-size: 48px;
    }

    .hero-content,
    .page-hero-content {
        padding: 0 30px;
    }

    .section {
        padding: 80px 30px;
    }

    .stats {
        padding: 60px 30px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-image::before {
        display: none;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .payments-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        padding-top: 110px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero::before {
        width: 100%;
        opacity: 0.15;
    }

    .hero-content,
    .page-hero-content {
        padding: 0 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 17px;
    }

    .page-hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 50px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons a {
        text-align: center;
    }

    .section {
        padding: 60px 20px;
    }

    .section-header h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 32px;
    }

    .stats {
        padding: 40px 20px;
    }

    .stats-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 40px;
    }

    .stat-label {
        font-size: 12px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        padding: 30px 25px;
    }

    .children-grid {
        grid-template-columns: 1fr;
    }

    .rules-list {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 30px 25px;
    }

    .payments-grid {
        grid-template-columns: 1fr;
    }

    .quote-block {
        padding: 40px 25px;
    }

    .quote-block p {
        font-size: 22px;
    }

    footer {
        padding: 40px 20px 20px;
    }

    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline {
        padding: 15px 30px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 30px;
    }

    .page-hero h1 {
        font-size: 30px;
    }

    .section-header h2,
    .about-content h2,
    .contact-info h2 {
        font-size: 28px;
    }

    .stat-number {
        font-size: 32px;
    }

    .contact-item {
        flex-direction: column;
        text-align: center;
    }

    .team-card-content {
        padding: 25px;
    }
}

/* Overlay for mobile menu */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 999;
}

.nav-overlay.active {
    display: block;
}

/* Cookie Consent Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-navy);
    color: white;
    padding: 15px 30px;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-icon {
    font-size: 24px;
}

.cookie-content p {
    font-size: 14px;
    color: rgba(255,255,255,0.9);
    margin: 0;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-link {
    color: white;
    text-decoration: underline;
    font-size: 14px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    padding: 8px 12px;
}

.cookie-link:hover {
    color: var(--warm-gold);
}

.cookie-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: 'Work Sans', sans-serif;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: var(--accent-teal);
    color: white;
}

.cookie-btn.accept:hover {
    background: #3a8a6e;
}

.cookie-btn.decline {
    background: #4a5568;
    color: white;
}

.cookie-btn.decline:hover {
    background: #5a6578;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px 20px;
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cookie-content {
        flex-direction: column;
        gap: 8px;
    }

    .cookie-buttons {
        flex-wrap: wrap;
        justify-content: center;
    }
}
