/* CSS Reset & Custom Properties */
:root {
    --deep-charcoal: #1C1F26;
    --soft-ivory: #F7F5F0;
    --muted-gold: #B89B5E;
    --slate-gray: #6B7280;
    --white: #FFFFFF;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    
    --transition-smooth: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --shadow-subtle: 0 4px 20px rgba(28, 31, 38, 0.05);
    --shadow-hover: 0 10px 30px rgba(28, 31, 38, 0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    color: var(--deep-charcoal);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--deep-charcoal);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Layout Utilities */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-fluid {
    width: 100%;
}

.section-padding {
    padding: 100px 0;
}

.bg-ivory {
    background-color: var(--soft-ivory);
}

.bg-white {
    background-color: var(--white);
}

.bg-charcoal {
    background-color: var(--deep-charcoal);
}

.text-white {
    color: var(--white);
}

.text-center {
    text-align: center;
}

.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mt-5 { margin-top: 3rem; }

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    border-radius: 2px;
    cursor: pointer;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.btn-large {
    padding: 16px 36px;
    font-size: 1.05rem;
}

.btn-block {
    width: 100%;
}

.btn-primary {
    background-color: var(--muted-gold);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #A38850;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--muted-gold);
    color: var(--muted-gold);
}

.btn-outline:hover {
    background-color: var(--muted-gold);
    color: var(--white);
    transform: translateY(-2px);
}

.bg-charcoal .btn-outline {
    border-color: var(--white);
    color: var(--white);
}
.bg-charcoal .btn-outline:hover {
    background-color: var(--white);
    color: var(--deep-charcoal);
}

/* Section Shared */
.section-label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--slate-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-label-gold {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--muted-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-size: 2.2rem;
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}

.section-intro {
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--slate-gray);
    font-size: 1.1rem;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition-smooth);
    padding: 16px 0;
}

.site-header.scrolled {
    padding: 12px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--deep-charcoal);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.logo-sub {
    font-size: 0.8rem;
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--muted-gold);
    letter-spacing: 2.5px;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--deep-charcoal);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--muted-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.phone-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--deep-charcoal);
}

.phone-link:hover {
    color: var(--muted-gold);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 20px;
    position: relative;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--deep-charcoal);
    position: absolute;
    left: 0;
    transition: var(--transition-smooth);
}

.mobile-menu-toggle span:nth-child(1) { top: 0; }
.mobile-menu-toggle span:nth-child(2) { top: 9px; }
.mobile-menu-toggle span:nth-child(3) { top: 18px; }

.mobile-menu-toggle.active span:nth-child(1) {
    top: 9px;
    transform: rotate(45deg);
}
.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
    top: 9px;
    transform: rotate(-45deg);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-color: var(--deep-charcoal);
    background-image: linear-gradient(to right, rgba(28, 31, 38, 0.95), rgba(28, 31, 38, 0.8)), url('images/barrister-bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--white);
    padding-top: 80px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at right, rgba(184, 155, 94, 0.05) 0%, transparent 50%);
}

.hero-container {
    position: relative;
    z-index: 2;
}
.hero-split-layout {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 4rem;
    width: 100%;
}

.hero-content-left {
    flex: 0 0 60%;
    max-width: 60%;
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

.hero-image-right {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    justify-content: center; 
    align-items: center;  /* Reverted to center alignment as requested */
    padding-right: 2rem;     
    animation: fadeInUp 1s cubic-bezier(0.25, 0.8, 0.25, 1) 0.2s forwards;
    opacity: 0;
}

.hero-logo-img {
    width: 100%;
    max-width: 320px;        /* Strict max width to keep it looking premium and contained */
    height: auto;
    object-fit: contain;
    max-height: 320px;       /* Reduced height for a more balanced, smaller look */
    filter: drop-shadow(0 4px 15px rgba(0, 0, 0, 0.5)); 
}



.advocate-portrait-wrapper {
    width: 100%;
    max-width: 450px;
    aspect-ratio: 3/4;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    border: 1px solid rgba(184, 155, 94, 0.3); /* Muted gold border */
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-hover);
}

.advocate-portrait-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--white);
    letter-spacing: -0.5px;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
    font-weight: 300;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hero-trust-microcopy {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
}

.micro-badge {
    display: flex;
    align-items: center;
    gap: 4px;
}

/* About Section */
.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--slate-gray);
    font-weight: 300;
}

.about-text p {
    margin-bottom: 1.5rem;
}

.about-text p:first-child {
    font-size: 1.05rem;
    color: var(--deep-charcoal);
    font-weight: 300;
}

.about-visual {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.visual-card-block {
    position: relative;
    background-color: var(--white);
    padding: 3rem;
    box-shadow: var(--shadow-subtle);
    border-radius: 4px;
    z-index: 2;
}

.abstract-accent {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 150px;
    height: 150px;
    background-image: radial-gradient(var(--muted-gold) 2px, transparent 2px);
    background-size: 15px 15px;
    opacity: 0.3;
    z-index: 1;
}

.highlight-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-card {
    padding-left: 1.5rem;
    border-left: 2px solid var(--muted-gold);
}

.highlight-card .card-title {
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
    font-family: var(--font-body);
}

.highlight-card p {
    color: var(--slate-gray);
    font-size: 0.95rem;
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.service-card {
    background-color: var(--white);
    padding: 2.5rem 2rem;
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 4px;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--muted-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-card:hover::after {
    transform: scaleX(1);
}

.service-icon {
    width: 60px;
    height: 60px;
    background-color: var(--soft-ivory);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    color: var(--muted-gold);
}

.service-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.service-desc {
    color: var(--slate-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.btn-learn-more {
    background: none;
    border: none;
    color: var(--muted-gold);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.95rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0;
    transition: var(--transition-smooth);
}

.btn-learn-more span {
    transition: transform 0.3s ease;
}

.btn-learn-more:hover {
    color: var(--deep-charcoal);
}

.btn-learn-more:hover span {
    transform: translateX(4px);
}

/* Service Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(28, 31, 38, 0.85); /* Deep charcoal with opacity */
    backdrop-filter: blur(5px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background-color: var(--white);
    width: 90%;
    max-width: 650px;
    max-height: 90vh;
    border-radius: 4px;
    padding: 3rem;
    position: absolute; /* within flex container */
    overflow-y: auto;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    pointer-events: none; /* Hide interaction when not active */
}

.modal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: none;
    border: none;
    font-size: 2rem;
    line-height: 1;
    color: var(--slate-gray);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.modal-close:hover {
    color: var(--deep-charcoal);
    transform: rotate(90deg);
}

.modal-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--deep-charcoal);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.modal-content {
    color: var(--slate-gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

.modal-content p {
    margin-bottom: 1rem;
}

.modal-content ul {
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    list-style-type: none; /* remove default */
}

.modal-content li {
    position: relative;
    margin-bottom: 0.5rem;
}

.modal-content li::before {
    content: "•";
    color: var(--muted-gold);
    font-size: 1.5rem;
    position: absolute;
    left: -1.2rem;
    top: -0.3rem;
}


/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.feature-block {
    position: relative;
    padding-left: 3rem;
}

.feature-number {
    position: absolute;
    left: 0;
    top: -5px;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-style: italic;
    color: var(--muted-gold);
    opacity: 0.5;
}

.feature-title {
    font-family: var(--font-body);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: var(--white);
}

.feature-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--slate-gray);
    margin-bottom: 2rem;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.info-item strong {
    display: block;
    color: var(--deep-charcoal);
    margin-bottom: 0.25rem;
    font-size: 0.95rem;
}

.info-item span, .info-item a {
    color: var(--slate-gray);
    font-size: 0.95rem;
}

.info-item a:hover {
    color: var(--muted-gold);
}

.lgbtq-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: rgba(184, 155, 94, 0.1);
    color: var(--deep-charcoal);
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
}

.rainbow-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF3B30, #FF9500, #FFCC00, #4CD964, #5AC8FA, #007AFF, #5856D6);
}

.contact-actions {
    display: flex;
    gap: 1rem;
}

.contact-form-wrapper {
    background-color: var(--white);
    padding: 3rem;
    border-radius: 4px;
    box-shadow: var(--shadow-subtle);
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--deep-charcoal);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid rgba(0,0,0,0.1);
    background-color: var(--soft-ivory);
    border-radius: 2px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--muted-gold);
    background-color: var(--white);
    box-shadow: 0 0 0 3px rgba(184, 155, 94, 0.1);
}

.privacy-note {
    font-size: 0.8rem;
    color: var(--slate-gray);
    text-align: center;
    margin-top: 1rem;
}

/* Map */
.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: var(--deep-charcoal);
    background-image: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?auto=format&fit=crop&q=80&w=2000');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(28, 31, 38, 0.7);
}

.map-overlay-info {
    position: relative;
    z-index: 2;
    background-color: var(--white);
    padding: 3rem;
    text-align: center;
    border-radius: 4px;
    box-shadow: var(--shadow-hover);
    max-width: 400px;
}

.map-overlay-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.map-overlay-info p {
    color: var(--slate-gray);
    margin-bottom: 0.5rem;
}

.map-btn {
    margin-top: 1.5rem;
}

/* Footer */
.site-footer {
    background-color: var(--deep-charcoal);
    color: var(--white);
    padding: 5rem 0 2rem;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand {
    flex: 1;
    min-width: 300px;
}

.footer-logo {
    display: inline-block;
    font-family: var(--font-heading);
    font-size: 1.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.footer-logo-sub {
    font-family: var(--font-body);
    font-size: 0.8rem;
    color: var(--muted-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.footer-trust {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    max-width: 300px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--muted-gold);
}

.footer-heading {
    font-family: var(--font-body);
    color: var(--white);
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-contact p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

.footer-cta-link {
    display: inline-block;
    color: var(--muted-gold);
    font-weight: 500;
    margin-top: 1rem;
}

.footer-cta-link:hover {
    color: var(--white);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Mobile Sticky CTA */
.mobile-sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: var(--deep-charcoal);
    padding: 12px;
    z-index: 999;
    box-shadow: 0 -4px 10px rgba(0,0,0,0.1);
}

.sticky-call-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: var(--muted-gold);
    color: var(--white);
    width: 100%;
    padding: 14px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Media Queries */
@media (max-width: 992px) {
    .hero-split-layout {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-content-left,
    .hero-image-right {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .hero-content-left {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .hero-image-right {
        justify-content: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .about-container,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .about-visual {
        order: -1;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
        margin-bottom: 1.5rem;
    }

    .hero-actions .btn {
        width: 100%;
    }
    
    .hero-trust-microcopy {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        transform: translateY(-150%);
        transition: var(--transition-smooth);
        opacity: 0;
        border-top: 1px solid rgba(0,0,0,0.05);
    }
    
    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-list {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .nav-cta {
        flex-direction: column;
        width: 100%;
        margin-top: 2rem;
    }
    
    .nav-cta .btn {
        width: 100%;
    }
    
    .mobile-sticky-cta {
        display: block;
    }
    
    body {
        padding-bottom: 70px;
    }

    .hero {
        height: auto;
        min-height: auto;
        padding-top: 120px;
        padding-bottom: 60px;
    }
}
