/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Industrial + Editorial Color Palette */
    --primary-color: #2c3e50;
    --primary-dark: #1a252f;
    --primary-light: #34495e;
    --secondary-color: #7f8c8d;
    --accent-color: #95a5a6;
    --text-color: #2c2c2c;
    --text-light: #5a5a5a;
    --text-lighter: #8a8a8a;
    --bg-color: #fafafa;
    --bg-light: #f0f0f0;
    --bg-lighter: #e8e8e8;
    --bg-dark: #1a1a1a;
    --bg-darker: #0f0f0f;
    --border-color: #d0d0d0;
    --border-light: #e5e5e5;
    --success-color: #27ae60;
    --error-color: #c0392b;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.12);
    --shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-md: 0 8px 16px rgba(0, 0, 0, 0.18);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.2);
    --shadow-xl: 0 16px 32px rgba(0, 0, 0, 0.22);
    --transition: all 0.25s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-fast: all 0.12s ease-out;
}

body {
    font-family: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 15px;
    line-height: 1.75;
    color: var(--text-color);
    background-color: var(--bg-color);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Work Sans', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    letter-spacing: -0.015em;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header - Top Bar Style */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 72px;
    background: var(--bg-color);
    border-bottom: 2px solid var(--border-color);
    z-index: 1000;
    padding: 0;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.logo:hover {
    opacity: 0.7;
}

.logo i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.nav-list {
    list-style: none;
    display: flex;
    gap: 0.125rem;
}

.nav-link {
    display: block;
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.625rem 1.25rem;
    border-radius: 0;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1.25rem;
    right: 1.25rem;
    height: 2px;
    background: var(--primary-color);
    transform: scaleX(0);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--text-color);
}

.nav-link:hover::after {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--text-color);
    font-weight: 600;
}

.nav-link.active::after {
    transform: scaleX(1);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-color);
    border-radius: 0;
    transition: var(--transition);
}

/* Main Content */
.main-content {
    margin-top: 72px;
    min-height: calc(100vh - 72px);
}

/* Hero Section - Asymmetric Layout */
.hero-section {
    padding: 6rem 0 4rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.hero-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.hero-content {
    padding-top: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-color);
    text-transform: uppercase;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 600px;
    font-weight: 400;
}

.hero-sidebar {
    background: var(--bg-color);
    padding: 2.5rem;
    border: 2px solid var(--border-color);
    position: sticky;
    top: 100px;
}

.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    border-bottom: 1px solid var(--border-light);
    padding-bottom: 1.5rem;
}

.stat-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    color: var(--primary-color);
    margin-bottom: 0.375rem;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-lighter);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* CTA Section - Minimal */
.cta-section {
    padding: 3rem 0;
    background: var(--bg-color);
    border-bottom: 1px solid var(--border-color);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 1.75rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.cta-text {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.75;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Preview - Editorial Grid */
.services-preview {
    padding: 5rem 0;
    background: var(--bg-color);
}

.services-header {
    margin-bottom: 3.5rem;
    max-width: 700px;
}

.services-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    background: var(--bg-light);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    min-height: 280px;
}

.service-item:hover {
    border-color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.service-item-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.service-item-content {
    flex: 1;
}

.service-item-title {
    font-size: 1.375rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 0.875rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.service-item-text {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.9375rem;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: auto;
}

.service-features li {
    color: var(--text-light);
    margin-bottom: 0.625rem;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.875rem;
}

.service-features i {
    color: var(--primary-color);
    font-size: 0.75rem;
}

.service-item-link {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: var(--transition);
}

.service-item-link:hover {
    gap: 0.75rem;
}

/* Features - Layered Cards */
.features {
    padding: 5rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background: var(--bg-color);
    padding: 3rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.feature-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.feature-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9375rem;
}

/* Testimonials - Editorial Style */
.testimonials {
    padding: 5rem 0;
    background: var(--bg-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.testimonial-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-left: 3px solid var(--primary-color);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    border-left-width: 6px;
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 0.9375rem;
    margin-bottom: 2rem;
    flex: 1;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}

.testimonial-photo {
    width: 56px;
    height: 56px;
    border-radius: 0;
    object-fit: cover;
    border: 2px solid var(--border-color);
}

.testimonial-author-content h4 {
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 0.25rem;
    color: var(--text-color);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.testimonial-role {
    color: var(--text-lighter);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-icon {
    display: none;
}

/* Sections */
.section {
    padding: 5rem 0;
}

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

.section-header {
    margin-bottom: 3.5rem;
    max-width: 800px;
}

.section-title {
    font-size: 2.75rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-color);
    letter-spacing: -0.015em;
    text-transform: uppercase;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.75;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 0;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.875rem;
    transition: var(--transition);
    border: 2px solid;
    cursor: pointer;
    font-family: 'Work Sans', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: transparent;
}

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

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 0.9375rem;
}

/* Page Hero */
.page-hero {
    background: var(--bg-light);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid var(--border-color);
}

.page-title {
    font-size: 3.5rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 1rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: -0.015em;
}

.page-subtitle {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
    line-height: 1.75;
}

/* Contact Page */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
}

.contact-form-wrapper,
.contact-info-wrapper {
    background: var(--bg-light);
    padding: 3rem;
    border: 1px solid var(--border-color);
}

.contact-form-wrapper .section-title,
.contact-info-wrapper .section-title {
    font-size: 1.75rem;
    margin-bottom: 2.5rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

.form-label {
    display: block;
    margin-bottom: 0.625rem;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 0;
    font-size: 0.9375rem;
    transition: var(--transition);
    font-family: 'Work Sans', sans-serif;
    background: var(--bg-color);
    color: var(--text-color);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
}

.form-textarea {
    resize: vertical;
    min-height: 160px;
    font-family: 'Work Sans', sans-serif;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    cursor: pointer;
}

.form-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--primary-color);
    margin-top: 2px;
    flex-shrink: 0;
}

.form-checkbox a {
    color: var(--primary-color);
    text-decoration: underline;
}

.form-error {
    color: var(--error-color);
    font-size: 0.8125rem;
    margin-top: 0.5rem;
    display: block;
    min-height: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.form-success {
    background: var(--success-color);
    color: white;
    padding: 2rem;
    border-radius: 0;
    text-align: center;
    margin-top: 2rem;
}

.form-success i {
    font-size: 2rem;
    margin-bottom: 0.875rem;
    display: block;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.contact-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-info-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.contact-info-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 0.625rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.contact-info-content p {
    color: var(--text-light);
    margin-bottom: 0.375rem;
    font-size: 0.9375rem;
}

.contact-info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
}

.contact-info-content a:hover {
    text-decoration: underline;
}

.contact-info-note {
    font-size: 0.8125rem;
    color: var(--text-lighter);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 4rem 0 2rem;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-logo i {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.75;
    font-size: 0.875rem;
}

.footer-title {
    font-size: 0.9375rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 1.5rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-menu {
    list-style: none;
}

.footer-menu li {
    margin-bottom: 0.875rem;
}

.footer-menu a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-menu a:hover {
    color: white;
}

.footer-contact {
    list-style: none;
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    gap: 0.875rem;
    font-size: 0.875rem;
}

.footer-contact i {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9375rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8125rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: rgba(255, 255, 255, 0.9);
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    display: none;
    border-top: 2px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.75;
    font-size: 0.875rem;
}

.cookie-text a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

/* About Page */
.about-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.about-text-content {
    background: var(--bg-light);
    padding: 3.5rem;
    border: 1px solid var(--border-color);
    margin-bottom: 3rem;
}

.about-text {
    margin-top: 2.5rem;
}

.about-text p {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-light);
    margin-bottom: 1.75rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
}

.team-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.team-photo {
    width: 100px;
    height: 100px;
    border-radius: 0;
    object-fit: cover;
    margin: 0 auto 1.5rem;
    border: 2px solid var(--border-color);
    transition: var(--transition);
}

.team-card:hover .team-photo {
    border-color: var(--primary-color);
}

.team-name {
    font-size: 1.25rem;
    font-weight: 600;
    font-family: 'Work Sans', sans-serif;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 0.02em;
    text-align: center;
}

.team-role {
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-align: center;
}

.team-description {
    color: var(--text-light);
    line-height: 1.75;
    font-size: 0.9375rem;
    text-align: center;
}

/* Mobile Menu */
@media (max-width: 1024px) {
    .hero-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-sidebar {
        position: static;
    }
    
    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .stat-item {
        border-bottom: none;
        border-right: 1px solid var(--border-light);
        padding-right: 2rem;
        padding-bottom: 0;
    }
    
    .stat-item:last-child {
        border-right: none;
    }
    
    .services-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .header {
        height: 64px;
    }
    
    .main-content {
        margin-top: 64px;
    }
    
    .nav {
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: var(--bg-color);
        border-bottom: 2px solid var(--border-color);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav.active {
        max-height: 400px;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 1.5rem 24px;
        gap: 0;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-link::after {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-stats {
        flex-direction: column;
    }
    
    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border-light);
        padding-right: 0;
        padding-bottom: 1.5rem;
    }
    
    .services-list {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .page-title {
        font-size: 2.25rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
    }
    
    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 0.875rem;
    }
}
