@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");

:root {
    --black: #000000;
    --dark-gray: #1a1b26;
    --light-gray: #a9b1d6;
    --accent: #6378f7;
    --accent-hover: #4e62d4;
    --text-primary: #FFFFFF;
    --text-secondary: #B0B0B0;
    --background: #05050A;
    --surface: #111118;
    --border: #222230;
    --gradient: linear-gradient(135deg, #6378f7 0%, #3e52d8 100%);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.7);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-secondary);
    background: var(--background);
    line-height: 1.6;
    overflow-x: hidden;
}
body.menu-open { overflow: hidden; }

h1, h2, h3, h4 { color: var(--text-primary); font-weight: 800; }
h1 { font-size: clamp(2.5rem, 5vw, 56px); letter-spacing: -1.5px; line-height: 1.1; }
h2 { font-size: clamp(2rem, 4vw, 42px); margin-bottom: 16px; line-height: 1.2; }
h3 { font-size: 24px; font-weight: 700; }

nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(5, 5, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 1000;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
}
nav.scrolled { padding: 12px 0; }

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}
.logo img { height: 85px; width: auto; transition: 0.3s; }
nav.scrolled .logo img { height: 65px; }
.logo span {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none;
    align-items: center;
}
.nav-links a {
    color: var(--text-primary);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: 0.3s;
}
.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.call-btn {
    background: var(--gradient);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    display: flex;
    gap: 8px;
    align-items: center;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}
.call-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--border);
    background: transparent;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.mobile-menu-btn:hover { border-color: var(--accent); }

.burger { width: 24px; height: 18px; position: relative; }
.burger span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--accent);
    border-radius: 2px;
    transition: 0.25s ease;
}
.burger span:nth-child(1) { top: 0; }
.burger span:nth-child(2) { top: 8px; }
.burger span:nth-child(3) { top: 16px; }

.burger.open span:nth-child(1) { top: 8px; transform: rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { top: 8px; transform: rotate(-45deg); }

.mobile-dropdown {
    position: fixed;
    top: var(--nav-height, 84px);
    left: 0;
    right: 0;
    background: var(--surface);
    padding: 24px 32px;
    border-top: 1px solid var(--border);
    box-shadow: var(--shadow-xl);
    max-height: calc(100vh - var(--nav-height, 84px));
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: 0.25s ease;
    z-index: 999;
}
.mobile-dropdown.active {
    opacity: 1; visibility: visible; pointer-events: auto; transform: translateY(0);
}
.mobile-dropdown a {
    display: block; color: var(--text-primary); text-decoration: none;
    font-weight: 500; padding: 12px 0; border-bottom: 1px solid var(--border); transition: 0.3s;
}
.mobile-dropdown a:not(.call-btn):hover { color: var(--accent); padding-left: 8px; }
.mobile-dropdown .call-btn { margin-top: 16px; width: 100%; justify-content: center; border-bottom: 0; }

.hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: stretch; background: var(--background); padding-top: 85px; }
.hero-video-panel { position: relative; flex: 1; min-height: 50vh; }
.hero-video {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 0;
}
.hero-video-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(5,5,10,0.1) 0%, var(--background) 100%);
}
.hero-text-panel {
    flex: 1; display: flex; align-items: center; justify-content: flex-start;
    position: relative; z-index: 2; padding: 60px 48px;
    background: var(--background);
}
.hero-content {
    text-align: left; max-width: 650px; margin: 0;
}
.hero-eyebrow {
    color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 2px; font-size: 13px; margin-bottom: 16px;
}
.hero h1 { margin-bottom: 24px; text-shadow: none; }
.hero h1 em { color: var(--accent); font-style: normal; }
.hero-subtitle { font-size: clamp(1rem, 2vw, 20px); color: var(--text-secondary); margin-bottom: 40px; max-width: 100%; }
.hero-ctas { display: flex; gap: 16px; justify-content: flex-start; margin-bottom: 40px; }
.hero-trust-badges { display: flex; flex-wrap: wrap; gap: 16px; }
.trust-badge { font-size: 13px; font-weight: 600; color: var(--text-secondary); background: rgba(255,255,255,0.05); padding: 8px 16px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.05); }

.btn-primary {
    background: var(--gradient);
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 12px;
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    align-items: center;
    box-shadow: var(--shadow-lg);
    transition: transform 0.3s, box-shadow 0.3s;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-xl); }

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: #fff !important;
    padding: 16px 40px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 700;
    text-decoration: none;
    display: inline-flex;
    gap: 8px;
    transition: 0.3s;
}
.btn-secondary:hover { background: rgba(255, 255, 255, 0.1); border-color: rgba(255,255,255,0.2); }

section { padding: 96px 32px; }
section[id] { scroll-margin-top: 100px; }
.container { max-width: 1400px; margin: auto; }

.section-header { text-align: center; margin-bottom: 64px; }
.section-subtitle {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 13px;
    margin-bottom: 12px;
}

.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.about-text p { margin-bottom: 16px; font-size: 16px; }
.about-text ul { list-style: none; margin-top: 24px; display: grid; gap: 16px; }
.about-text li { display: flex; align-items: center; gap: 16px; color: var(--text-primary); font-weight: 500; }
.about-text li svg { flex-shrink: 0; color: var(--accent); }
.about-img-box { position: relative; }
.about-img-box img { width: 100%; border-radius: 20px; box-shadow: var(--shadow-xl); }

.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; }
.service-card {
    background: var(--surface);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: 0.4s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px;
    background: var(--gradient); transform: scaleX(0); transition: 0.4s; transform-origin: left;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-xl); border-color: var(--accent); }

.service-icon {
    width: 100%; height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 24px;
}
.service-icon img { width: 100%; height: 100%; object-fit: cover; }

.service-card h3 { margin-bottom: 16px; }
.service-card p { flex: 1; margin-bottom: 24px; font-size: 15px; color: var(--text-secondary); }
.service-card ul { list-style: none; margin-top: 12px; margin-bottom: 24px; flex: 1; }
.service-card li { color: var(--text-secondary); font-size: 15px; margin-bottom: 8px; position: relative; padding-left: 20px; }
.service-card li::before { content: '▸'; position: absolute; left: 0; color: var(--accent); }

.service-link {
    display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 600; font-size: 15px; margin-top: auto;
}

.areas-layout { display: flex; gap: 48px; align-items: flex-start; }
.areas-list-container { flex: 1; min-width: 0; max-width: 100%; }
.areas-map-container {
    flex: 1; min-width: 0; max-width: 100%; height: 500px;
    border-radius: 16px; overflow: hidden; box-shadow: var(--shadow-lg); position: sticky; top: 120px;
}
.areas-wrapper { position: relative; }
.areas-grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 24px; transition: max-height 0.5s ease;
}
.areas-grid.collapsed { max-height: 480px; overflow: hidden; }
.region-card {
    background: var(--surface);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid var(--border);
    transition: 0.3s;
}
.region-card:hover { border-color: var(--accent); box-shadow: var(--shadow-md); transform: translateY(-3px); }
.region-card h3 { font-size: 18px; margin-bottom: 8px; color: var(--accent); }
.region-card .region-desc { font-size: 14px; margin-bottom: 16px; color: var(--text-secondary); line-height: 1.4; border-bottom: 1px solid rgba(255,255,255,0.05); padding-bottom: 16px; }
.suburbs-list { display: flex; flex-wrap: wrap; gap: 8px; }
.suburb-badge {
    background: rgba(255,255,255,0.03); border: 1px solid rgba(255,255,255,0.1); padding: 4px 10px; border-radius: 6px; font-size: 13px; color: var(--text-primary); transition: 0.2s;
}
.suburb-badge:hover { background: rgba(99, 120, 247, 0.2); border-color: var(--accent); }

.areas-mask {
    position: absolute; bottom: 0; left: 0; right: 0; height: 120px;
    background: linear-gradient(to bottom, rgba(5, 5, 10, 0) 0%, var(--background) 100%);
    display: flex; align-items: flex-end; justify-content: center; padding-bottom: 12px; pointer-events: none; transition: opacity 0.3s; z-index: 10;
}
.areas-mask.hidden { opacity: 0; pointer-events: none; }

.reveal-btn {
    background: var(--surface); color: var(--accent); border: 1px solid var(--accent);
    padding: 12px 28px; border-radius: 24px; font-weight: 600; cursor: pointer; pointer-events: auto; transition: 0.3s; box-shadow: var(--shadow-md); font-family: inherit;
}
.reveal-btn:hover { background: var(--accent); color: #fff; }

.contact-layout {
    display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; max-width: 1200px; margin: auto;
}
.contact-info-card {
    background: var(--surface); padding: 48px; border-radius: 16px; border: 1px solid var(--border);
}
.contact-detail { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 32px; }
.contact-detail:last-child { margin-bottom: 0; }
.contact-detail-icon {
    width: 52px; height: 52px; border-radius: 14px; background: rgba(99, 120, 247, 0.1);
    display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; border: 1px solid rgba(99, 120, 247, 0.2);
}
.contact-detail-text h4 { font-size: 18px; margin-bottom: 6px; }
.contact-detail-text p, .contact-detail-text a { color: var(--text-secondary); font-size: 15px; text-decoration: none; }
.contact-detail-text a:hover { color: var(--text-primary); }

form { background: var(--surface); padding: 48px; border-radius: 16px; border: 1px solid var(--border); }
.form-grid { display: grid; gap: 20px; }
input, textarea {
    width: 100%; padding: 16px; background: rgba(0,0,0,0.3); border: 1px solid var(--border);
    border-radius: 10px; color: #fff; font-family: inherit; transition: 0.3s; font-size: 15px;
}
input:focus, textarea:focus { border-color: var(--accent); outline: none; background: rgba(0,0,0,0.5); }
.submit-btn {
    background: var(--gradient); color: #fff; padding: 18px; border: none; border-radius: 10px; font-weight: 700; cursor: pointer; width: 100%; font-family: inherit; font-size: 16px; transition: transform 0.3s, box-shadow 0.3s; margin-top: 10px;
}
.submit-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

footer { background: var(--surface); padding: 80px 32px 32px; border-top: 1px solid var(--border); color: var(--text-secondary); }
.footer-content { max-width: 1400px; margin: auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 48px; margin-bottom: 64px; }
.footer-section h3 { color: #fff; margin-bottom: 24px; font-size: 20px; }
.footer-section p { margin-bottom: 16px; font-size: 15px; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 16px; }
.footer-section a { color: var(--text-secondary); text-decoration: none; display: flex; gap: 12px; align-items: center; transition: 0.3s; font-size: 15px; }
.footer-section a:hover { color: var(--accent); }
.footer-bottom { text-align: center; padding-top: 32px; border-top: 1px solid var(--border); font-size: 14px; }

/* ============================================
   RESPONSIVE MEDIA QUERIES — ALL SCREEN SIZES
   ============================================ */

/* ── Large Desktop / Wide Monitor (1600px+) ── */
@media (min-width: 1600px) {
    .container, .nav-container, .footer-content { max-width: 1600px; }
    h1 { font-size: 68px; }
    h2 { font-size: 50px; }
    .services-grid { grid-template-columns: repeat(3, 1fr); }
    .areas-map-container { height: 600px; }
    .logo img { height: 100px; }
    nav.scrolled .logo img { height: 76px; }
}

/* ── Standard Desktop / Laptop (1200px – 1599px) ── */
@media (max-width: 1200px) {
    .container, .nav-container { padding-inline: 28px; }
    .footer-content { gap: 36px; }
    .areas-layout { gap: 32px; }
    .contact-layout { gap: 32px; }
}

/* ── Small Laptop / Large Tablet Landscape (1024px) ── */
@media (max-width: 1024px) {
    .nav-container { padding: 0 24px; }
    .nav-links { display: none; }
    .mobile-menu-btn { display: inline-flex; }

    .hero { flex-direction: column; padding-top: 80px; }
    .hero-video-panel { flex: none; height: 50vh; width: 100%; }
    .hero-video-overlay { background: linear-gradient(180deg, rgba(5,5,10,0.1) 0%, var(--background) 100%); }
    .hero-text-panel { flex: none; align-items: flex-start; justify-content: center; padding: 48px 24px 80px; }
    .hero-content { text-align: center; max-width: 100%; margin: 0 auto; }
    .hero-ctas { justify-content: center; }
    .hero-trust-badges { justify-content: center; }

    .about-content { grid-template-columns: 1fr; gap: 32px; }
    .about-img-box div { height: 300px !important; }

    .contact-layout { grid-template-columns: 1fr; gap: 32px; }

    .areas-layout { flex-direction: column; gap: 32px; }
    .areas-map-container { width: 100%; height: 400px; position: static; margin-bottom: 0; }

    .services-grid { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

    .footer-content { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

/* ── Tablet Portrait (768px) ── */
@media (max-width: 768px) {
    h1 { font-size: 40px; letter-spacing: -1px; }
    h2 { font-size: 32px; }
    h3 { font-size: 20px; }

    section { padding: 64px 20px; }
    section[id] { scroll-margin-top: 80px; }

    .nav-container { padding: 0 20px; }
    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas a { width: 100%; justify-content: center; }
    .hero-subtitle { font-size: 16px; margin-bottom: 32px; }

    .logo img { height: 75px; }
    nav.scrolled .logo img { height: 60px; }
    .logo span { display: none; }

    .services-grid { grid-template-columns: 1fr; gap: 16px; }
    .service-card { padding: 32px 24px; }

    .contact-info-card, form { padding: 32px 24px; }

    .footer-content { grid-template-columns: 1fr; gap: 24px; margin-bottom: 40px; }
    footer { padding: 60px 20px 24px; }

    .section-header { margin-bottom: 48px; }

    .areas-map-container { height: 350px; }
    .region-card { padding: 20px; }
}

/* ── Large Mobile / Small Tablet (600px) ── */
@media (max-width: 600px) {
    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    .hero-subtitle { font-size: 15px; }

    .btn-primary, .btn-secondary { padding: 14px 28px; font-size: 15px; }

    .section-header { margin-bottom: 40px; }
    section { padding: 56px 16px; }

    .contact-detail { gap: 12px; }
    .contact-detail-icon { width: 44px; height: 44px; }

    .areas-map-container { height: 300px; }

    .mobile-dropdown { padding: 20px; }
}

/* ── Standard Mobile (480px) ── */
@media (max-width: 480px) {
    h1 { font-size: 30px; line-height: 1.15; letter-spacing: -0.5px; }
    h2 { font-size: 26px; }
    h3 { font-size: 18px; }

    section { padding: 48px 16px; }
    section[id] { scroll-margin-top: 70px; }
    .hero-subtitle { font-size: 14px; margin-bottom: 28px; }
    .btn-primary, .btn-secondary { padding: 13px 20px; width: 100%; justify-content: center; font-size: 15px; }

    .section-header { margin-bottom: 32px; }

    .service-card { padding: 24px 20px; }
    .service-icon { height: 180px; }
    .services-grid { gap: 14px; }

    .contact-info-card, form { padding: 24px 16px; }
    .submit-btn { padding: 16px; font-size: 15px; }

    .footer-content { gap: 20px; margin-bottom: 32px; }
    .footer-section h3 { margin-bottom: 14px; font-size: 17px; }
    footer { padding: 48px 16px 20px; }
    .footer-bottom { font-size: 13px; }

    .logo img { height: 68px; }
    nav.scrolled .logo img { height: 55px; }

    .areas-map-container { height: 260px; border-radius: 12px; }
    .region-card { padding: 16px; }
    .suburb-badge { font-size: 12px; padding: 3px 8px; }

    .contact-detail-icon { width: 40px; height: 40px; border-radius: 10px; }
    .contact-detail-text h4 { font-size: 16px; }
    .contact-detail-text p, .contact-detail-text a { font-size: 14px; }
}

/* ── Small Mobile (360px) ── */
@media (max-width: 360px) {
    h1 { font-size: 26px; }
    h2 { font-size: 22px; }
    h3 { font-size: 17px; }

    section { padding: 40px 12px; }

    .nav-container { padding: 0 14px; }
    .logo img { height: 60px; }
    nav.scrolled .logo img { height: 48px; }

    .service-card { padding: 20px 14px; }
    .service-icon { height: 160px; }

    .contact-info-card, form { padding: 20px 12px; }

    .areas-map-container { height: 220px; }
    .suburb-badge { font-size: 11px; padding: 2px 7px; }

    .btn-primary, .btn-secondary { font-size: 14px; padding: 12px 16px; }
    .call-btn { padding: 8px 16px; font-size: 13px; }

    .footer-section h3 { font-size: 16px; }
    .footer-section p, .footer-section a { font-size: 13px; }
}


/* ============================================
   GENERIC INTERNAL PAGES
   ============================================ */

.page-hero {
    padding: 160px 32px 100px;
    text-align: center;
    background: linear-gradient(180deg, var(--surface) 0%, var(--background) 100%);
    border-bottom: 1px solid var(--border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -50%; left: 50%;
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(99, 120, 247, 0.15) 0%, rgba(5, 5, 10, 0) 70%);
    transform: translateX(-50%);
    pointer-events: none;
}

.breadcrumbs {
    display: flex;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    margin-bottom: 24px;
    color: var(--text-secondary);
}

.breadcrumbs a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: 0.2s;
}

.breadcrumbs a:hover {
    color: var(--accent);
}

.breadcrumbs span {
    color: rgba(255,255,255,0.3);
}

.page-hero h1 {
    font-size: clamp(2rem, 4vw, 48px);
    margin-bottom: 16px;
    position: relative;
}

.page-hero p.page-summary {
    max-width: 700px;
    margin: 0 auto;
    font-size: clamp(1rem, 1.5vw, 18px);
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-content {
    padding: 80px 32px;
}

/* FAQs */
.faq-list {
    display: grid;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.faq-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    transition: 0.3s;
}

.faq-card:hover {
    border-color: rgba(99, 120, 247, 0.4);
    box-shadow: var(--shadow-sm);
}

.faq-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.faq-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

/* Call CTA Bar */
.cta-banner {
    background: var(--gradient);
    border-radius: 16px;
    padding: 48px 32px;
    text-align: center;
    max-width: 1000px;
    margin: 64px auto 0;
    box-shadow: var(--shadow-lg);
}

.cta-banner h2 {
    margin-bottom: 16px;
    font-size: clamp(1.5rem, 3vw, 36px);
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
    font-size: 17px;
}

.cta-banner .btn-secondary {
    background: #fff !important;
    color: var(--background) !important;
    border-color: transparent;
}

.cta-banner .btn-secondary:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

@media (max-width: 768px) {
    .page-hero { padding: 120px 20px 60px; }
    .page-content { padding: 56px 20px; }
    .cta-banner { padding: 32px 20px; }
}
