:root {
    --primary-color: #d4af37;
    --primary-hover: #b8860b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #1a1a1a;
}

header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
}

.top-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.w-icon {
    background-color: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 45px;
    font-weight: 400;
    border-radius: 4px;
    font-family: 'Brush Script MT', cursive;
}

.logo-text h1 {
    font-size: 1.15rem;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: -2px;
}

.logo-text h2 {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Main Navigation */
.menu-toggle {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #fff;
}

.main-nav {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.main-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: white;
    font-size: 0.85rem;
    font-weight: 700;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: var(--primary-color);
}

.header-cta {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.btn-gold {
    background-color: var(--primary-color);
    color: white;
    padding: 10px 22px;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.8rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-gold:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.phone {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.3rem;
    font-weight: 700;
}

.phone i {
    background: var(--primary-color);
    width: 32px;
    height: 32px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 0.9rem;
}

/* Sub Navigation */
.sub-nav-container {
    background: rgba(0, 0, 0, 0.55);
    border-top: 1px solid rgba(255,255,255,0.1);
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sub-nav ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 12px 0;
    width: 100%;
}

.sub-nav a {
    text-decoration: none;
    color: white;
    font-size: 0.8rem;
    font-weight: 400;
    transition: opacity 0.3s;
}

/* Sub-nav hover effect (desktop) */
.sub-nav a {
    position: relative;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    transition: background-color 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
}

.sub-nav a::after {
    content: "";
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 4px;
    height: 2px;
    background: var(--primary-color);
    opacity: 0;
    transform: scaleX(0.6);
    transform-origin: center;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.sub-nav a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.sub-nav a:hover::after {
    opacity: 1;
    transform: scaleX(1);
}

.sub-nav a.active {
    background: rgba(255, 255, 255, 0.10);
}

.sub-nav a.active::after {
    opacity: 1;
    transform: scaleX(1);
}

/* Sub-nav Dropdowns */
.sub-nav li {
    position: relative;
}

.sub-nav .has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 6px;
}

.sub-nav .has-dropdown i {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.sub-nav .dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(15, 15, 15, 0.98);
    min-width: 220px;
    display: none;
    flex-direction: column;
    padding: 10px 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.8);
    z-index: 1000;
    border-radius: 8px;
    opacity: 0;
    transition: all 0.3s ease;
}

.sub-nav .has-dropdown:hover .dropdown {
    display: flex;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.sub-nav .has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.sub-nav .dropdown li {
    width: 100%;
}

.sub-nav .dropdown a {
    padding: 12px 20px;
    width: 100%;
    display: block;
    border-radius: 0;
    text-align: left;
    white-space: nowrap;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.sub-nav .dropdown a::after {
    display: none;
}

.sub-nav .dropdown li:last-child a {
    border-bottom: none;
}

.sub-nav .dropdown a:hover {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-color);
    padding-left: 25px;
}

/* Hide dropdowns on mobile scroller */
@media (max-width: 992px) {
    .sub-nav .has-dropdown .dropdown {
        display: none !important;
    }
    .sub-nav .has-dropdown i {
        display: none;
    }
}

/* ===========================
   Product pages (second menu)
   =========================== */

.page-hero {
    position: relative;
    min-height: 55vh;
    display: grid;
    align-items: center;
    padding: 140px 0 70px;
    overflow: hidden;
    background: #0f0f0f;
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.15) 100%);
    z-index: 1;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.02);
    z-index: 0;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

.page-hero h1 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.page-hero p {
    max-width: 60ch;
    color: rgba(255,255,255,0.85);
    font-size: 1.05rem;
    margin-bottom: 22px;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.10);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.92);
}

.badge i {
    color: var(--primary-color);
}

.page-section {
    padding: 90px 0;
}

.two-col {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: start;
}

.card-panel {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 26px;
}

.feature-list {
    list-style: none;
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.feature-list li {
    display: flex;
    gap: 10px;
    color: rgba(255,255,255,0.88);
}

.feature-list i {
    margin-top: 3px;
    color: var(--primary-color);
}

.image-card {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 20px 60px rgba(0,0,0,0.45);
}

.image-card img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 22px;
}

.gallery-strip img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform 0.25s ease, opacity 0.25s ease;
    opacity: 0.95;
}

.gallery-strip img:hover {
    transform: translateY(-3px);
    opacity: 1;
}

.faq {
    display: grid;
    gap: 12px;
    margin-top: 18px;
}

.faq details {
    border-radius: 14px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 14px 18px;
}

.faq summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    float: right;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1;
}

.faq details[open] summary::after {
    content: "–";
}

.faq p {
    margin-top: 10px;
    color: rgba(255,255,255,0.82);
}

.cta-band {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.22), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 18px;
    padding: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cta-band h3 {
    font-size: 1.6rem;
}

.cta-band p {
    color: rgba(255,255,255,0.85);
    margin-top: 6px;
}

@media (max-width: 992px) {
    .page-hero {
        padding: 120px 0 60px;
        min-height: 60vh;
    }
    .two-col {
        grid-template-columns: 1fr;
    }
    .gallery-strip {
        grid-template-columns: 1fr;
    }
    .gallery-strip img {
        height: 200px;
    }
    .cta-band {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ===========================
   Contact Page Specific
   =========================== */

.contact-page-form .form-group {
    margin-bottom: 20px;
}

.contact-page-form input,
.contact-page-form textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: white;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.contact-page-form input:focus,
.contact-page-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 0.08);
}

.contact-page-form .btn-gold {
    width: 100%;
    border: none;
    padding: 15px;
    font-size: 1.1rem;
    cursor: pointer;
}

.contact-info-list {
    margin-top: 25px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.info-item i {
    color: var(--primary-color);
    font-size: 1.6rem;
    width: 25px;
    text-align: center;
}

.info-content h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 700;
}

.info-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.social-follow {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icons-row {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.social-icons-row a {
    color: white;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icons-row a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.map-container {
    height: 450px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.no-padding-top {
    padding-top: 0 !important;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 140px;
    overflow: hidden;
}

.hero-bg-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
    z-index: 0;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    position: relative;
    z-index: 1;
}

.contact-form-container {
    background: rgba(50, 50, 50, 0.75);
    padding: 40px;
    border-radius: 20px;
    width: 100%;
    max-width: 480px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 5px;
    font-weight: 700;
    text-transform: uppercase;
}

.contact-form-container h4 {
    font-size: 1.3rem;
    margin-bottom: 30px;
    font-weight: 400;
    text-transform: uppercase;
}

#contact-form input, #contact-form textarea {
    padding: 14px 18px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    background: #fff;
    color: #333;
    width: 100%;
}

#contact-form button {
    padding: 12px 45px;
    font-size: 1.1rem;
    border-radius: 30px;
    font-weight: 700;
    cursor: pointer;
    background-color: var(--primary-color);
    color: white;
    border: none;
    align-self: flex-start;
}

/* Sections General */
section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    padding-bottom: 15px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: #555;
}

/* Popular Products */
.popular-products {
    background-color: #111;
}

.products-wrapper {
    overflow-x: auto;
    position: relative;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.products-wrapper::-webkit-scrollbar {
    display: none;
}

.products-grid {
    display: flex;
    gap: 30px;
    padding-bottom: 10px;
}

.product-card {
    flex: 0 0 calc((100% - 60px) / 3);
    text-align: center;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.product-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 25px;
}

.product-card h3 {
    font-size: 1.6rem;
    margin-bottom: 10px;
}

.product-card p {
    font-size: 1rem;
    color: #888;
    padding: 0 10px;
}

/* Slider Controls */
.slider-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.slider-controls button {
    background-color: #222;
    color: #fff;
    border: 1px solid #444;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s;
}

.slider-controls button:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 25px;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background-color: #333;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background-color: var(--primary-color);
}

/* About Us */
.about-us {
    background-color: #0a0a0a;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 60px;
}

.about-text {
    flex: 1.2;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 30px;
}

.about-text p {
    margin-bottom: 25px;
    font-size: 1.15rem;
    color: #aaa;
}

.btn-outline {
    display: inline-block;
    padding: 14px 35px;
    border: 1px solid #fff;
    color: #fff;
    text-decoration: none;
    margin-top: 20px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-outline:hover {
    background-color: #fff;
    color: #000;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.6);
}

/* Testimonials */
.testimonials {
    padding: 0;
    background: linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)), url('https://images.unsplash.com/photo-1618219908412-a29a1bb7b86e?ixlib=rb-4.0.3&auto=format&fit=crop&w=1920&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.testimonials-bg {
    padding: 120px 0;
}

.bg-title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 10rem;
    opacity: 0.03;
    white-space: nowrap;
    z-index: 0;
    pointer-events: none;
    width: 100%;
    text-align: center;
}

.testimonials-wrapper {
    position: relative;
    z-index: 1;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.testimonials-wrapper::-webkit-scrollbar {
    display: none;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
    padding-bottom: 10px;
}

.testimonial-card {
    flex: 0 0 calc((100% - 40px) / 2);
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 12px;
    backdrop-filter: blur(5px);
    flex-shrink: 0;
    scroll-snap-align: start;
}

.gold-line {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin-bottom: 25px;
}

.testimonial-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    font-size: 1.1rem;
    color: #ccc;
    font-style: italic;
}

/* Footer */
footer {
    background-color: #050505;
    padding: 80px 0 40px;
    border-top: 2px solid var(--primary-color);
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 80px;
}

.brand-col .logo {
    margin-bottom: 25px;
}

.brand-desc {
    color: #999;
    font-size: 0.95rem;
    line-height: 1.8;
}

.footer-title {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    text-decoration: none;
    color: #777;
    font-size: 0.95rem;
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-col p {
    color: #777;
    margin-bottom: 15px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-col i {
    color: var(--primary-color);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.social-icons a {
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1rem;
    transition: all 0.3s;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright {
    color: #555;
    font-size: 0.9rem;
}

.footer-credits {
    color: #444;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================================
   RESPONSIVENESS
   ============================================================ */

/* Large Laptops */
@media (max-width: 1200px) {
    .nav-container, .hero-content {
        padding: 0 20px;
    }
    
    .product-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

/* Tablets & Smaller Laptops */
@media (max-width: 992px) {
    .nav-container {
        padding: 0 20px;
    }

    /* Move hamburger to the RIGHT on mobile */
    .main-nav {
        justify-content: flex-end;
    }

    .menu-toggle {
        display: block;
        z-index: 201;
        margin-left: auto;
    }

    .main-nav .nav-list {
        display: none;
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        z-index: 200;
    }

    .main-nav .nav-list.active {
        display: flex;
    }

    .header-cta {
        display: none;
    }

    .hero-content {
        justify-content: center;
    }

    .about-flex {
        flex-direction: column;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2.5rem;
    }

    .testimonial-card {
        flex: 0 0 100%;
    }

    /* Second menu (sub-nav): make it a clean horizontal scroller on mobile */
    .sub-nav ul {
        justify-content: flex-start;
        gap: 0;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 10px 0;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .sub-nav ul::-webkit-scrollbar {
        display: none;
    }

    .sub-nav li {
        flex: 0 0 auto;
    }

    .sub-nav a {
        display: block;
        white-space: nowrap;
        padding: 8px 14px;
        font-size: 0.78rem;
        opacity: 0.95;
    }
}

/* Mobile Phones */
@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .section-title {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .product-card {
        flex: 0 0 100%;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    /* Second menu tighter on small phones */
    .sub-nav a {
        padding: 8px 12px;
        font-size: 0.74rem;
    }
}

/* Extra Small Phones */
@media (max-width: 576px) {
    .logo-text {
        display: none;
    }

    .contact-form-container {
        padding: 30px 20px;
    }

    .contact-form-container h3 {
        font-size: 1.5rem;
    }

    .contact-form-container h4 {
        font-size: 1.1rem;
    }

    #contact-form button {
        width: 100%;
        align-self: center;
    }

    .bg-title {
        font-size: 5rem;
    }
}
