/* --- Core Properties & Variable Bindings --- */
:root {
    /* Color tokens extracted directly from design palette */
    --brand-primary-color: #1a3a2a;
    /* Deep rich forest green text */
    --brand-secondary-color: #eafbea;
    /* Soft pastel mint background tint */
    --accent-vibrant-green: #43a047;
    /* Solid green color of the 'Buy Now' action button */
    --text-muted-olive: #4a5d53;
    --badge-bg-translucent: rgba(255, 255, 255, 0.65);

    /* Typography Rules */
    --font-primary: 'Plus Jakarta Sans', sans-serif;
    --font-display: 'Syne', sans-serif;
    /* Matches wide structural alternate letterforms */
}

/* --- Global Reset Structure --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-primary);
    background-color: var(--brand-secondary-color);
    color: var(--brand-primary-color);
    overflow-x: hidden;
    line-height: 1.4;
    -webkit-font-smoothing: antialiased;
    padding-top: 110px; /* Space for fixed header */
}

/* --- Container Wrappers --- */
.header-container,
.hero-container,
.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* --- Navigation Header Styling --- */
.main-header {
    padding: 1.5rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: var(--brand-secondary-color);
    transition: padding 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.main-header.scrolled {
    padding: 0.8rem 0;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 25px rgba(26, 58, 42, 0.08);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-area {
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.brand-logo {
    width: 30px;
    height: 30px;
    object-fit: contain;
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    color: var(--brand-primary-color);
}

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-muted-olive);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--brand-primary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.action-btn {
    color: var(--brand-primary-color);
    display: flex;
    align-items: center;
    transition: transform 0.2s ease;
}

.action-btn:hover {
    transform: scale(1.08);
}

.account-link {
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    color: var(--brand-primary-color);
}

.mobile-nav-toggle {
    display: none;
}

/* --- Typography Section Title Layout --- */
.hero-title-wrapper {
    text-align: center;
    padding: 2.5rem 0 3.5rem 0;
}

.hero-title {
    font-family: var(--font-display);
    font-size: 5rem;
    font-weight: 500;
    letter-spacing: -2px;
    line-height: 1.1;
    color: var(--brand-primary-color);
}

.hero-title .light-accent-text {
    color: var(--accent-vibrant-green);
    font-weight: 400;
}

/* --- Main Interface Split Grid Grid --- */
.hero-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    align-items: center;
    gap: 4rem;
    position: relative;
    padding-bottom: 5rem;
}

/* Left Stack: Floating Properties Badges */
.properties-panel {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-self: start;
    z-index: 10;
}

.property-badge {
    background-color: var(--badge-bg-translucent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    padding: 0.8rem 1.5rem;
    border-radius: 100px;
    font-size: 0.9rem;
    color: #62766a;
    width: max-content;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.01);
}

/* Center Stack: Circular Layout Frame */
.center-display-panel {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.decorative-orbit-ring {
    position: absolute;
    width: 480px;
    height: 480px;
    border: 1px solid rgba(26, 58, 42, 0.08);
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
}

.main-image-frame {
    position: relative;
    z-index: 5;
    width: 400px;
    height: 400px;
    border-radius: 12px;
    overflow: hidden;
}

.hero-plant-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
}

/* Right Content Column Layout */
.cta-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    padding-left: 2rem;
    z-index: 10;
}

.hero-description {
    font-size: 1.1rem;
    color: var(--text-muted-olive);
    line-height: 1.5;
    max-width: 340px;
}

.btn-buy-now {
    display: inline-block;
    background-color: var(--accent-vibrant-green);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(67, 160, 71, 0.2);
}

.btn-buy-now:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
}

/* Video Frame Widget box component configuration */
.mini-video-widget {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-top: 1rem;
    max-width: 380px;
}

.video-preview-circle {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 2px dashed rgba(26, 58, 42, 0.3);
    padding: 4px;
}

.video-preview-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.play-overlay-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 32px;
    height: 32px;
    background-color: rgba(26, 58, 42, 0.85);
    border: none;
    border-radius: 50%;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    padding-left: 2px;
}

.video-annotation h3 {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--brand-primary-color);
    margin-bottom: 0.25rem;
}

.video-annotation p {
    font-size: 0.8rem;
    color: var(--text-muted-olive);
    line-height: 1.4;
}

/* --- Base Structural Footer --- */
.main-footer {
    background-color: rgba(26, 58, 42, 0.04);
    padding: 3rem 0;
    border-top: 1px solid rgba(26, 58, 42, 0.06);
    margin-top: 4rem;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-left h4 {
    font-family: var(--font-display);
    margin-bottom: 0.5rem;
}

.address-text {
    font-size: 0.9rem;
    color: var(--text-muted-olive);
}

.contact-channels {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-link {
    color: var(--brand-primary-color);
    text-decoration: none;
    font-size: 0.9rem;
}

.social-links-grid {
    display: flex;
    gap: 1.5rem;
}

.social-links-grid a {
    color: var(--text-muted-olive);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Screen Reader Helper --- */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* --- New Page Sections Base Styles --- */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-vibrant-green);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--brand-primary-color);
    margin-bottom: 1.5rem;
}

.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem auto;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted-olive);
    line-height: 1.5;
}

/* About Us Section styling */
.about-section {
    padding: 7rem 0;
    background-color: white;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 6rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-muted-olive);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.about-checklist {
    list-style: none;
    margin-bottom: 2rem;
}

.about-checklist li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--brand-primary-color);
    margin-bottom: 1rem;
}

.check-icon {
    color: var(--accent-vibrant-green);
    flex-shrink: 0;
}

.btn-primary {
    display: inline-block;
    background-color: var(--brand-primary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    transition: background-color 0.2s ease, transform 0.2s ease;
    box-shadow: 0 4px 15px rgba(26, 58, 42, 0.15);
}

.btn-primary:hover {
    background-color: var(--accent-vibrant-green);
    transform: translateY(-2px);
}

.about-image-wrapper {
    position: relative;
    padding-left: 2rem;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(26, 58, 42, 0.08);
}

.about-stats-card {
    position: absolute;
    bottom: -25px;
    left: 0;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid rgba(26, 58, 42, 0.05);
}

.stats-number {
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--accent-vibrant-green);
    line-height: 1.1;
}

.stats-text {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted-olive);
    margin-top: 0.25rem;
}

/* Featured Plants Grid styling */
.plants-section {
    padding: 7rem 0;
    background-color: var(--brand-secondary-color);
}

.plants-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.plant-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(26, 58, 42, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(26, 58, 42, 0.04);
}

.plant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(26, 58, 42, 0.08);
}

.plant-image-wrapper {
    position: relative;
    height: 320px;
    background-color: #f6faf6;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.plant-badge {
    position: absolute;
    top: 1.25rem;
    left: 1.25rem;
    background-color: var(--brand-primary-color);
    color: white;
    padding: 0.4rem 0.9rem;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    z-index: 5;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plant-img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.plant-card:hover .plant-img {
    transform: scale(1.08);
}

.plant-info {
    padding: 1.75rem;
}

.plant-name {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--brand-primary-color);
    margin-bottom: 0.35rem;
}

.plant-category {
    font-size: 0.85rem;
    color: var(--text-muted-olive);
    display: block;
    margin-bottom: 1.25rem;
}

.plant-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(26, 58, 42, 0.06);
    padding-top: 1.25rem;
}

.plant-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--brand-primary-color);
}

.btn-add-to-cart {
    display: inline-block;
    text-decoration: none;
    background-color: var(--brand-primary-color);
    color: white;
    border: none;
    padding: 0.65rem 1.35rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
}

.btn-add-to-cart:hover {
    background-color: var(--accent-vibrant-green);
    transform: scale(1.03);
}

/* Gallery styling */
.gallery-section {
    padding: 7rem 0;
    background-color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 380px;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.gallery-item.item-wide {
    grid-column: span 2;
}

.gallery-item.item-tall {
    grid-row: span 1;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.gallery-item:hover .gallery-img {
    transform: scale(1.06);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 42, 0.85) 0%, rgba(26, 58, 42, 0.3) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: white;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.25rem;
}

/* Contact Us Section styling */
.contact-section {
    padding: 7rem 0;
    background-color: var(--brand-secondary-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 6rem;
    align-items: start;
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--text-muted-olive);
    line-height: 1.6;
}

.contact-details-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-detail-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.detail-icon-wrapper {
    background-color: rgba(67, 160, 71, 0.1);
    color: var(--accent-vibrant-green);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.detail-text-wrapper h4 {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--brand-primary-color);
    margin-bottom: 0.25rem;
}

.detail-text-wrapper p {
    font-size: 0.95rem;
    color: var(--text-muted-olive);
    line-height: 1.4;
}

.contact-form-panel {
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    border: 1px solid rgba(26, 58, 42, 0.04);
    box-shadow: 0 15px 40px rgba(26, 58, 42, 0.04);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-row .form-group {
    margin-bottom: 0;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-primary-color);
}

.form-group input,
.form-group textarea {
    padding: 0.9rem 1.1rem;
    border: 1px solid rgba(26, 58, 42, 0.12);
    border-radius: 10px;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--brand-primary-color);
    background-color: #fafdfa;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-vibrant-green);
    box-shadow: 0 0 0 4px rgba(67, 160, 71, 0.08);
}

.btn-submit {
    background-color: var(--accent-vibrant-green);
    color: white;
    border: none;
    padding: 1.1rem 2rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
    width: 100%;
    box-shadow: 0 5px 20px rgba(67, 160, 71, 0.2);
}

.btn-submit:hover {
    background-color: #388e3c;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(67, 160, 71, 0.25);
}

/* --- FAQ Section styling --- */
.faq-section {
    padding: 7rem 0;
    background-color: #fafdfa;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background-color: white;
    border: 1px solid rgba(26, 58, 42, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(26, 58, 42, 0.05);
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-primary-color);
    transition: color 0.3s ease;
}

.faq-question:hover {
    color: var(--accent-vibrant-green);
}

.faq-icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--accent-vibrant-green);
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
}

.faq-question[aria-expanded="true"] + .faq-answer {
    max-height: 300px;
    padding: 0 2rem 1.5rem 2rem;
}

.faq-answer p {
    color: var(--text-muted-olive);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
    border-top: 1px solid rgba(26, 58, 42, 0.06);
    padding-top: 1rem;
}

/* --- Responsive Media Queries Breakdown --- */

@media (max-width: 1150px) {
    .hero-title {
        font-size: 4rem;
    }

    .hero-main-grid {
        grid-template-columns: 1.1fr 1fr;
        gap: 2.5rem;
    }

    .center-display-panel {
        grid-column: 1;
    }

    .cta-info-panel {
        grid-column: 2;
        padding-left: 0;
    }

    /* Sections adjustment */
    .about-grid,
    .contact-grid {
        gap: 3rem;
    }

    .plants-grid {
        gap: 2rem;
    }
}

@media (max-width: 900px) {
    /* Mobile Hamburger Trigger Setup */
    .mobile-nav-toggle {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0.5rem;
        position: relative;
        z-index: 1000;
    }

    .hamburger {
        display: block;
        width: 22px;
        height: 2px;
        background: var(--brand-primary-color);
        position: relative;
    }

    .hamburger::before,
    .hamburger::after {
        content: '';
        position: absolute;
        width: 22px;
        height: 2px;
        background: var(--brand-primary-color);
        left: 0;
        transition: transform 0.2s ease, top 0.2s ease, bottom 0.2s ease;
    }

    .hamburger::before {
        top: -6px;
    }

    .hamburger::after {
        bottom: -6px;
    }

    /* Structural Menu Drawer */
    .nav-menu {
        display: block;
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        height: 100vh;
        background-color: white;
        padding: 6rem 2rem 2rem 2rem;
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.05);
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .nav-menu.mobile-active {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 1.5rem;
    }

    /* Mobile active close icons transformations states */
    .mobile-nav-toggle[aria-expanded="true"] .hamburger {
        background: transparent;
    }

    .mobile-nav-toggle[aria-expanded="true"] .hamburger::before {
        transform: rotate(45deg);
        top: 0;
    }

    .mobile-nav-toggle[aria-expanded="true"] .hamburger::after {
        transform: rotate(-45deg);
        bottom: 0;
    }

    .header-actions {
        margin-right: 1rem;
    }

    .hero-title {
        font-size: 3.2rem;
        letter-spacing: -1px;
    }

    .hero-main-grid {
        grid-template-columns: 1fr;
        justify-content: center;
        text-align: center;
    }

    .center-display-panel,
    .cta-info-panel {
        grid-column: 1;
    }

    .cta-info-panel {
        align-items: center;
    }

    .hero-description {
        max-width: 450px;
    }

    .mini-video-widget {
        text-align: left;
    }

    .main-image-frame {
        width: 340px;
        height: 340px;
        margin: 0 auto;
    }

    .decorative-orbit-ring {
        width: 400px;
        height: 400px;
    }

    /* Sections adjustment */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }

    .about-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .about-checklist {
        display: inline-block;
        text-align: left;
    }

    .about-image-wrapper {
        padding-left: 0;
        max-width: 500px;
        width: 100%;
        margin: 0 auto;
    }

    .plants-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {

    .header-container,
    .hero-container,
    .footer-container,
    .section-container {
        padding: 0 1.5rem;
    }

    .about-section,
    .plants-section,
    .gallery-section,
    .contact-section {
        padding: 5rem 0;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .plants-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .gallery-item.item-wide {
        grid-column: span 1;
    }

    .gallery-item {
        height: 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-panel {
        padding: 2.5rem;
    }

}

@media (max-width: 480px) {
    .main-image-frame {
        width: 280px;
        height: 280px;
    }

    .decorative-orbit-ring {
        width: 320px;
        height: 320px;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form-panel {
        padding: 1.75rem;
    }
}