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

:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #4f46e5;
    --text-primary: #000000;
    --text-secondary: #666666;
    --text-light: #999999;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --border-light: #e5e5e5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--text-primary);
    background: var(--bg-white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.3s ease;
}

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

.logo {
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    color: var(--bg-white);
    transition: color 0.3s ease;
}

.nav-links {
    display: flex;
    gap: 3rem;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    letter-spacing: 0.02em;
}

.nav-links a:hover {
    color: var(--bg-white);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    width: 100%;
    padding: 0 3rem 6rem;
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%);
}

.hero-content {
    max-width: 1600px;
    margin: 0 auto;
}

.hero-title {
    font-size: 5.5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--bg-white);
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 0.01em;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.btn-link {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    position: relative;
    transition: all 0.3s ease;
    padding-bottom: 4px;
}

.btn-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: rgba(255, 255, 255, 1);
}

.btn-link:hover::after {
    background: rgba(255, 255, 255, 1);
    height: 2px;
}

/* Delivery Highlight Section */
.delivery-highlight {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: 8rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.delivery-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.delivery-highlight::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.delivery-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.delivery-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(79, 70, 229, 0.15);
    border: 1px solid rgba(79, 70, 229, 0.3);
    border-radius: 50px;
    color: #8b8bff;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
}

.delivery-title {
    font-size: 5rem;
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 2rem;
    color: var(--bg-white);
    letter-spacing: -0.03em;
}

.delivery-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    line-height: 1.7;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.delivery-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.delivery-feature {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    padding: 0.75rem 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.delivery-feature:hover {
    border-color: rgba(79, 70, 229, 0.5);
    background: rgba(79, 70, 229, 0.1);
    color: rgba(255, 255, 255, 0.9);
}

.delivery-cta {
    display: inline-block;
    color: var(--bg-white);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    padding-bottom: 6px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transition: all 0.3s ease;
}

.delivery-cta:hover {
    border-bottom-color: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}

/* Feature Section */
.feature-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.feature-media {
    background: var(--bg-light);
}

.feature-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
}

.feature-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 2rem;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.feature-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
    line-height: 1.7;
    max-width: 500px;
}

.text-link {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    display: inline-block;
    transition: all 0.3s ease;
}

.text-link:hover {
    color: var(--accent);
    transform: translateX(4px);
}

/* Services Section */
.services {
    padding: 8rem 0;
}

.services-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 300;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.services-list {
    max-width: 1600px;
    margin: 0 auto;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
    border-bottom: 1px solid var(--border-light);
}

.service-item.reverse {
    direction: rtl;
}

.service-item.reverse > * {
    direction: ltr;
}

.service-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 6rem;
}

.service-content h3 {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1.5rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.service-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 450px;
}

.service-media {
    background: var(--bg-light);
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.service-item:hover .service-image {
    transform: scale(1.05);
}

/* Image Placeholder */
.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.placeholder-text {
    color: var(--text-light);
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

/* Process Section */
.process {
    background: var(--bg-light);
    padding: 8rem 3rem;
}

.process-content {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title-large {
    font-size: 4rem;
    font-weight: 300;
    text-align: center;
    margin-bottom: 6rem;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4rem;
}

.process-step {
    text-align: left;
    position: relative;
    padding-left: 5rem;
}

.step-number {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 4rem;
    font-weight: 200;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(0, 0, 0, 0.25);
    line-height: 1;
    letter-spacing: -0.02em;
}

.process-step h3 {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
    color: var(--primary);
    margin-top: 0.5rem;
}

.process-step p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Why Section */
.why-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 700px;
}

.why-media {
    background: var(--bg-light);
    order: 2;
}

.why-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.why-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem;
    order: 1;
}

.why-title {
    font-size: 3.5rem;
    font-weight: 300;
    line-height: 1.2;
    margin-bottom: 2rem;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.why-text {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 500px;
}

/* Contact Section */
.contact {
    padding: 8rem 3rem;
    background: var(--bg-white);
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6rem;
}

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

.contact-title {
    font-size: 3rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--primary);
    letter-spacing: -0.02em;
}

.contact-heading {
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.contact-details {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.contact-details p {
    margin-bottom: 1rem;
}

.contact-address {
    font-size: 1.1rem;
    line-height: 1.8;
}

.time {
    color: var(--text-light);
    font-size: 0.95rem;
}

.contact-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 2px;
}

.contact-link:hover {
    color: var(--accent);
    border-bottom-color: var(--accent);
}

/* Footer */
.footer {
    background: var(--primary);
    color: var(--bg-white);
    padding: 4rem 3rem 3rem;
}

.footer-container {
    max-width: 1600px;
    margin: 0 auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 2rem;
}

.footer-logo {
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.footer-links {
    display: flex;
    gap: 3rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 400;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--bg-white);
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    font-weight: 300;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    background: #000000;
    border-radius: 24px;
    max-width: 500px;
    width: 90%;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    background: rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 1);
}

.modal-body {
    padding: 2.5rem 2rem 2rem;
    text-align: center;
}

.modal-title {
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--bg-white);
    margin-bottom: 0.75rem;
    line-height: 1.3;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
    font-weight: 300;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
}

.contact-method {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
    text-align: left;
}

.contact-method:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent);
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(79, 70, 229, 0.2);
}

.contact-method:active {
    transform: translateX(2px);
}

.method-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.method-icon {
    font-size: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    flex-shrink: 0;
}

.method-info {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.method-label {
    font-size: 0.9rem;
    color: var(--bg-white);
    font-weight: 500;
}

.method-value {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 400;
}

.method-arrow {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.contact-method:hover .method-arrow {
    transform: translateX(4px);
    color: var(--bg-white);
}

.modal-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 4rem;
    }
    
    .section-title-large {
        font-size: 3rem;
    }
    
    .feature-title,
    .why-title {
        font-size: 2.8rem;
    }
    
    .feature-content,
    .why-content {
        padding: 4rem;
    }
    
    .service-content {
        padding: 3rem 4rem;
    }
}

@media (max-width: 968px) {
    .nav-container {
        padding: 1.5rem 2rem;
    }
    
    .nav-links {
        gap: 2rem;
    }
    
    .hero {
        height: 100vh;
    }
    
    .hero-overlay {
        padding: 0 2rem 4rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }
    
    .delivery-highlight {
        padding: 5rem 2rem;
    }
    
    .delivery-title {
        font-size: 3rem;
    }
    
    .delivery-text {
        font-size: 1.1rem;
    }
    
    .delivery-features {
        gap: 1.5rem;
    }
    
    .feature-section,
    .why-section {
        grid-template-columns: 1fr;
    }
    
    .feature-media,
    .why-media {
        min-height: 400px;
    }
    
    .feature-content,
    .why-content {
        padding: 4rem 2rem;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .service-media {
        min-height: 400px;
        order: -1;
    }
    
    .service-content {
        padding: 3rem 2rem;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .section-title-large {
        font-size: 2.5rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }
}

@media (max-width: 640px) {
    .nav-container {
        padding: 1rem 1.25rem;
    }
    
    .logo,
    .footer-logo {
        font-size: 0.8rem;
        letter-spacing: 0.15em;
    }
    
    .nav-links {
        gap: 1rem;
    }
    
    .nav-links a {
        font-size: 0.75rem;
    }
    
    .hero {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-overlay {
        padding: 0 1.25rem 3rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.15;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .hero-actions {
        gap: 1rem;
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
    }
    
    .btn-link {
        font-size: 0.85rem;
    }
    
    .delivery-highlight {
        padding: 4rem 1.25rem;
    }
    
    .delivery-badge {
        font-size: 0.7rem;
        padding: 0.4rem 1rem;
        margin-bottom: 2rem;
    }
    
    .delivery-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }
    
    .delivery-text {
        font-size: 1rem;
        margin-bottom: 2rem;
        line-height: 1.6;
    }
    
    .delivery-features {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
        margin-bottom: 2.5rem;
    }
    
    .delivery-feature {
        font-size: 0.8rem;
        padding: 0.6rem 1.25rem;
    }
    
    .delivery-cta {
        font-size: 0.95rem;
    }
    
    .feature-content,
    .why-content {
        padding: 3rem 1.5rem;
    }
    
    .feature-title,
    .why-title {
        font-size: 2rem;
    }
    
    .feature-text,
    .why-text {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 3rem 1.5rem;
    }
    
    .service-content h3 {
        font-size: 2rem;
    }
    
    .service-content p {
        font-size: 0.95rem;
        line-height: 1.6;
    }
    
    .service-media {
        min-height: 300px;
    }
    
    .process {
        padding: 4rem 1.25rem;
    }
    
    .section-title-large {
        font-size: 1.75rem;
        margin-bottom: 2.5rem;
        line-height: 1.2;
        padding: 0 0.5rem;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .process-step {
        padding-left: 3.5rem;
    }
    
    .step-number {
        font-size: 2.5rem;
        -webkit-text-stroke: 1px rgba(0, 0, 0, 0.15);
    }
    
    .process-step h3 {
        font-size: 1.15rem;
        margin-top: 0.25rem;
    }
    
    .process-step p {
        font-size: 0.875rem;
        line-height: 1.5;
    }
    
    .contact {
        padding: 4rem 1.5rem;
    }
    
    .contact-title {
        font-size: 2rem;
    }
    
    .contact-heading {
        font-size: 1.15rem;
    }
    
    .contact-details {
        font-size: 0.9rem;
    }
    
    .footer {
        padding: 3rem 1.5rem 2rem;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-bottom p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
    
    .modal-content {
        width: 90%;
        border-radius: 16px;
        max-height: 80vh;
    }
    
    .modal-close {
        top: 0.5rem;
        right: 0.5rem;
        width: 30px;
        height: 30px;
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 2rem 1rem 1.5rem;
    }
    
    .modal-title {
        font-size: 1.25rem;
        line-height: 1.2;
        margin-bottom: 0.5rem;
    }
    
    .modal-subtitle {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
        line-height: 1.4;
    }
    
    .contact-methods {
        gap: 0.625rem;
    }
    
    .contact-method {
        padding: 1rem 0.875rem;
        border-radius: 10px;
    }
    
    .method-left {
        gap: 0.75rem;
    }
    
    .method-icon {
        font-size: 1.25rem;
        width: 36px;
        height: 36px;
        border-radius: 8px;
    }
    
    .method-label {
        font-size: 0.85rem;
    }
    
    .method-value {
        font-size: 0.75rem;
    }
    
    .method-arrow {
        font-size: 0.9rem;
    }
    
    .modal-note {
        font-size: 0.75rem;
        padding-top: 0.875rem;
        margin-top: 0.5rem;
    }
}

/* Smooth Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease forwards;
}

/* Scroll Offset */
section {
    scroll-margin-top: 80px;
}
