/* Hero Section (Home) */
.hero {
    height: 85vh;
    /* Reduced from 100vh per request */
    min-height: 600px;
    /* Reduced from 700px */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    color: var(--white);
    padding-top: var(--header-height);
    /* Added to prevent header overlap */
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(0, 34, 68, 0.65) 0%,
            rgba(0, 34, 68, 0.45) 50%,
            rgba(0, 34, 68, 0.85) 100%);
    z-index: 1;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    filter: brightness(0.35) contrast(1.1);
}

.parallax-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 2;
    pointer-events: none;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 10%;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: 10%;
    right: 5%;
    background: var(--secondary-glow);
}

.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    right: 15%;
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-pretitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--secondary);
    font-weight: 800;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hero-pretitle::before,
.hero-pretitle::after {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--secondary);
}

.hero h1 {
    font-size: clamp(2.8rem, 8vw, 5.5rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 30px;
    letter-spacing: -2px;
    color: var(--white);
}

.hero h1 .txt-type {
    color: var(--secondary);
    position: relative;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(255, 180, 0, 0.3);
}

.hero h1 .wrap {
    border-right: 4px solid var(--secondary);
    padding-right: 5px;
    animation: blink 0.9s infinite;
}

.hero p {
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 50px;
    opacity: 0.95;
    font-weight: 400;
}

@keyframes blink {

    0%,
    100% {
        border-color: var(--secondary);
    }

    50% {
        border-color: transparent;
    }
}

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 100px 0 60px;
        min-height: 75vh;
    }

    .hero-pretitle {
        font-size: 0.75rem;
        letter-spacing: 2px;
    }

    .parallax-shape {
        display: none;
    }
}

/* Features Icon Grid (Improved) */
.features-icon-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.feature-icon-item {
    background: var(--white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
    border: 1px solid var(--gray-100);
}

.feature-icon-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--secondary);
}

.feature-icon-wrapper {
    width: 60px;
    height: 60px;
    background: var(--gray-50);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.feature-icon-item:hover .feature-icon-wrapper {
    background: var(--secondary);
    color: var(--primary);
}

.feature-content h4 {
    margin-bottom: 10px;
    font-size: 1.15rem;
}

.feature-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.5;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: -50px;
    position: relative;
    z-index: 10;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border-top: 5px solid var(--secondary);
    transition: all 0.4s ease;
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-card i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray-700);
    margin-bottom: 25px;
    font-size: 0.95rem;
}

/* Teachers Grid */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 450px));
    gap: 40px;
    margin-top: 50px;
    justify-content: center;
}

.teacher-card {
    background: var(--white);
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 34, 68, 0.08);
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    border: 1px solid rgba(0, 34, 68, 0.05);
    position: relative;
    transform-style: preserve-3d;
}

/* Hover Lift */
.teacher-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: translateY(-10px);
}

/* Visual Header Area */
.teacher-visual {
    height: 380px;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    overflow: hidden;
    background: transparent;
}

.teacher-bg {
    display: none;
}

/* Subtle accent for both */
.teacher-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 180, 0, 0.1) 0%, transparent 70%);
    z-index: 1;
    animation: rotateSlow 20s linear infinite;
}

@keyframes rotateSlow {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

/* Decoration removed for "photo-only" feel as requested */

/* Image Wrapper */
.teacher-img-wrapper {
    position: relative;
    z-index: 3;
    width: 90%;
    /* Reduzido de 100% para melhor enquadramento no desktop */
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    transition: transform 0.4s ease;
}

.teacher-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* Alterado de cover para evitar cortes e zoom excessivo */
    object-position: bottom center;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.teacher-card:hover .teacher-img {
    transform: scale(1.1);
}

/* Content Area */
.teacher-info {
    padding: 30px;
    position: relative;
    z-index: 5;
    background: var(--white);
    text-align: left;
    /* Modern clean left align */
}

.teacher-info h3 {
    margin-bottom: 8px;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 800;
}

.teacher-info p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Decorative Line under Name */
.teacher-info h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 4px;
    background: var(--secondary);
    margin-top: 8px;
    border-radius: 2px;
}

/* Social Icons (Bonus) */
.teacher-social {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    font-size: 1rem;
}

.social-icon:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* Why Choose Us - Premium Redesign */
.why-choose-section {
    position: relative;
    background: var(--gray-50);
    padding: 100px 0;
    overflow: hidden;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 60px;
    position: relative;
    z-index: 1;
}

.step-card {
    background: var(--white);
    padding: 50px 35px;
    border-radius: 30px;
    text-align: left;
    border: 1px solid var(--gray-100);
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.step-card:hover {
    box-shadow: var(--shadow-lg), 0 0 20px var(--secondary-glow);
    border-color: var(--secondary);
    transform: translateY(-10px);
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--gray-50);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 25px;
    transition: 0.3s;
}

.step-card:hover .step-icon {
    background: var(--secondary);
    color: var(--white);
    transform: scale(1.1) rotate(10deg);
}

.step-number {
    font-size: 6rem;
    font-weight: 900;
    color: var(--primary);
    opacity: 0.03;
    position: absolute;
    top: -10px;
    right: -10px;
    line-height: 1;
    pointer-events: none;
    transition: 0.5s;
}

.step-card:hover .step-number {
    opacity: 0.1;
    transform: scale(1.2) rotate(-5deg);
}

.step-card h4 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.4rem;
    font-weight: 800;
}

.step-card p {
    font-size: 1rem;
    color: var(--gray-600);
    line-height: 1.7;
}

/* CTA Action - Premium Hero Style (Gold) */
.card-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--secondary) 0%, #FF9F00 100%);
    color: var(--primary);
    font-weight: 700;
    font-size: 1rem;
    padding: 12px 32px;
    border-radius: 50px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 180, 0, 0.3);
    margin-top: 15px;
    text-decoration: none;
    border: none;
}

/* Hiding arrow as requested */
.card-action i {
    display: none !important;
}

/* =========================================
   PREMIUM LOCATION SECTION (V4)
   ========================================= */
.location-premium-v2 {
    position: relative;
    padding: 60px 0 120px 0;
    background: #f9fafb;
    /* Subtle off-white for contrast */
    overflow: hidden;
}

.location-bg-blobs {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.location-bg-blobs .blob {
    position: absolute;
    filter: blur(80px);
    border-radius: 50%;
    opacity: 0.15;
}

.blob-1 {
    top: -10%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: transparent;
}

.blob-2 {
    bottom: -10%;
    right: -5%;
    width: 500px;
    height: 500px;
    background: var(--primary);
}

.location-grid-v2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.location-image-wrapper {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
    height: 600px;
    border: 1px solid var(--secondary);
}

.main-location-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.location-image-wrapper:hover .main-location-img {
    transform: scale(1.05);
}

.image-overlay-v2 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 34, 68, 0.8), transparent);
    display: flex;
    justify-content: flex-start;
}

.badge-premium {
    background: var(--secondary);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 10px 20px rgba(255, 180, 0, 0.3);
}

.location-card-premium-v4 {
    background: var(--white);
    padding: 60px;
    border-radius: 40px;
    box-shadow: 0 30px 60px rgba(0, 34, 68, 0.08);
    /* Slightly stronger shadow */
    border: 1px solid rgba(0, 34, 68, 0.05);
    /* Slightly darker border */
    position: relative;
    overflow: hidden;
}

.loc-header-v4 {
    margin-bottom: 45px;
    text-align: left;
}

.loc-label-v4 {
    display: inline-block;
    background: rgba(255, 180, 0, 0.1);
    color: var(--secondary);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.loc-title-v4 {
    font-size: 2.2rem !important;
    color: var(--primary) !important;
    font-weight: 900 !important;
    letter-spacing: -1.5px !important;
    line-height: 1.1 !important;
}

.loc-address-block-v4 {
    display: flex;
    gap: 30px;
    margin-bottom: 45px;
    align-items: flex-start;
}

.loc-icon-v4 {
    width: 70px;
    height: 70px;
    background: var(--primary);
    color: var(--white);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 15px 30px rgba(0, 34, 68, 0.15);
    flex-shrink: 0;
}

.loc-address-content-v4 {
    flex: 1;
}

.loc-tag-v4 {
    color: var(--secondary);
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 8px;
}

.loc-main-address-v4 {
    font-size: 2.2rem !important;
    font-weight: 900 !important;
    color: var(--primary) !important;
    line-height: 1.1 !important;
    margin-bottom: 8px !important;
    letter-spacing: -1px !important;
}

.loc-sub-address-v4 {
    font-size: 1.2rem;
    color: var(--gray-600);
    font-weight: 500;
    margin-bottom: 15px;
}

.loc-landmark-v4 {
    font-size: 1.1rem;
    color: var(--primary);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-50);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px dashed var(--gray-250);
}

.loc-landmark-v4 i {
    color: var(--secondary);
    font-size: 1.3rem;
}

.loc-info-row-v4 {
    padding: 25px;
    background: var(--gray-50);
    border-radius: 20px;
    margin-bottom: 40px;
}

.loc-info-item-v4 {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 1.15rem;
    color: var(--gray-700);
    font-weight: 600;
}

.loc-info-item-v4 i {
    color: var(--primary);
    font-size: 1.5rem;
}

.loc-map-v4 {
    width: 100%;
    height: 300px;
    border-radius: 30px;
    overflow: hidden;
    border: 1px solid var(--gray-200);
    margin-top: 30px;
}

.btn-full {
    width: 100%;
}

@media (max-width: 1200px) {
    .location-image-wrapper {
        height: 500px;
    }
}

@media (max-width: 992px) {
    .location-grid-v2 {
        grid-template-columns: 1fr;
        gap: 40px;
        display: flex;
        flex-direction: column-reverse;
    }

    .location-image-wrapper {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .location-card-premium-v4 {
        padding: 40px 20px;
        text-align: center;
    }

    .loc-title-v4 {
        font-size: 1.8rem !important;
    }

    .loc-address-block-v4 {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .loc-main-address-v4 {
        font-size: 1.8rem !important;
    }

    .loc-icon-v4 {
        width: 55px;
        height: 55px;
        font-size: 1.4rem;
        margin: 0 auto;
        border-radius: 18px;
    }
}

/* =========================================
   BLOG PREVIEW SECTION (PREMIUM DARK)
   ========================================= */
.blog-preview {
    background-color: var(--primary);
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
    /* Yellow Top accent */
    border-top: 8px solid var(--secondary);
}


/* =========================================
   DARK BRAND THEME (REUSABLE)
   ========================================= */
.section-brand-dark {
    background-color: var(--primary);
    position: relative;
    padding-top: 80px;
    padding-bottom: 100px;
    /* Yellow Top accent */
    border-top: 8px solid var(--secondary);
    color: var(--white);
}

/* Background Pattern (Subtle) */
.section-brand-dark::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.section-brand-dark .section-title h2 {
    color: var(--white);
}

.section-brand-dark .section-title p {
    color: rgba(255, 255, 255, 0.8);
}


/* If we put .section-brand-dark on a section, we might need to adjust internal specific styles */
.section-brand-dark .feature-icon-item,
.section-brand-dark .step-card {
    border: none;
    /* Remove gray borders on dark bg for cleaner look */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Stronger shadow */
}

.blog-preview .section-title h2 {
    color: var(--white);
}

.blog-preview .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.blog-card {
    background: var(--white);
    /* Keep cards white for contrast, or go dark glass? User liked the blue field. White cards pop well on blue. */
    border-radius: 24px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    will-change: transform;
}

/* Hover state */
.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.blog-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.15);
}

/* Gradient Overlay for textual contrast if needed (Subtle) */
.blog-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
    opacity: 0.6;
}

.blog-category {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary);
    /* Brand Yellow */
    color: var(--primary);
    /* Dark Text */
    font-size: 0.75rem;
    font-weight: 800;
    padding: 8px 16px;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 5;
    border: none;
}

.blog-content {
    padding: 30px;
}

.blog-content h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary);
    line-height: 1.3;
    font-weight: 700;
    transition: color 0.3s;
}

.blog-card:hover h3 {
    color: var(--secondary);
}

.blog-content p {
    font-size: 0.95rem;
    color: var(--gray-600);
    margin-bottom: 25px;
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.read-more {
    font-weight: 700;
    color: var(--primary);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: 0.3s;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.read-more i {
    transition: transform 0.3s ease;
    color: var(--secondary);
}

.read-more:hover {
    color: var(--secondary);
    gap: 15px;
}

.read-more:hover i {
    transform: translateX(5px);
}

.detail-item strong {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.detail-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Local Image */
.local-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    margin-bottom: 30px;
    width: 100%;
    /* Let image define height */
    box-shadow: var(--shadow-md);
}

.local-img-styled {
    width: 100%;
    height: auto;
    /* Maintain aspect ratio */
    display: block;
    transition: 0.5s;
}

.local-img-styled {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.local-image-wrapper:hover .local-img-styled {
    transform: scale(1.05);
    /* Zoom effect */
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 10px 20px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
    color: white;
    font-weight: 600;
    opacity: 0;
    transition: 0.3s;
}

.local-image-wrapper:hover .image-overlay {
    opacity: 1;
}

/* Actions */
.local-actions {
    display: flex;
    gap: 15px;
}

.local-actions .btn {
    flex: 1;
    font-size: 0.9rem;
    padding: 12px 10px;
}

.local-actions .btn i {
    font-size: 1rem;
}

/* Map Wrapper */
.map-wrapper {
    border-radius: 30px;
    overflow: hidden;
    height: 100%;
    min-height: 550px;
    box-shadow: var(--shadow-lg);
    position: relative;
    border: 4px solid var(--white);
}

.map-wrapper iframe {
    filter: brightness(0.95) contrast(1.1);
    /* Slight filter for cohesion */
    transition: 0.5s;
}

.map-wrapper:hover iframe {
    filter: brightness(1) contrast(1);
}

/* Decoration */
.map-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--white);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 700;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
    animation: pulse 3s infinite;
}

.map-decoration i {
    color: #EA4335;
    /* Google Maps Red */
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
    }
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
    .local-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .map-wrapper {
        min-height: 400px;
        order: -1;
        /* Show map first on mobile */
    }

    .local-info-card {
        padding: 30px;
    }
}