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

:root {
    --primary-color: #2563eb;
    --primary-dark: #1e40af;
    --secondary-color: #0f172a;
    --accent-color: #f59e0b;
    --text-dark: #1e293b;
    --text-medium: #475569;
    --text-light: #64748b;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    border-bottom: 1px solid #fcd34d;
}

.nav-top {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

.nav-menu a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--bg-white);
        flex-direction: column;
        padding: 24px;
        box-shadow: var(--shadow-md);
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }
}

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

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

.hero-card {
    background-color: var(--bg-white);
    margin: 32px auto;
    max-width: 1400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1 1 500px;
    padding: 64px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.hero-image {
    flex: 1 1 500px;
    min-height: 400px;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-light);
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.cta-secondary {
    display: inline-block;
    background-color: var(--bg-white);
    color: var(--primary-color);
    padding: 16px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
}

.intro-cards {
    padding: 64px 0;
}

.card-grid-three {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 48px;
}

.card-grid-three > * {
    flex: 1 1 300px;
}

.card-grid-two {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.card-grid-two > * {
    flex: 1 1 450px;
}

.info-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-icon {
    width: 64px;
    height: 64px;
    background-color: #dbeafe;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.info-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.services-main {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.section-header-centered {
    text-align: center;
    margin-bottom: 56px;
}

.section-header-centered h2 {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 16px;
}

.section-header-centered p {
    font-size: 18px;
    color: var(--text-medium);
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: var(--bg-light);
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.service-content p {
    color: var(--text-medium);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 24px;
}

.service-features span {
    color: var(--text-medium);
    font-size: 14px;
    padding-left: 20px;
    position: relative;
}

.service-features span::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: auto;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-select-service:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.contact-form-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.form-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.form-intro {
    color: var(--text-medium);
    margin-bottom: 32px;
    font-size: 16px;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.selected-service-display {
    background-color: #dbeafe;
    padding: 16px;
    border-radius: 8px;
    margin-bottom: 8px;
}

.selected-service-display span {
    color: var(--text-medium);
    font-size: 14px;
}

.selected-service-display strong {
    display: block;
    color: var(--primary-color);
    font-size: 18px;
    margin-top: 4px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.btn-submit {
    padding: 16px 32px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-submit:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.why-us-section {
    padding: 80px 0;
}

.why-us-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.feature-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
}

.feature-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.feature-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.footer {
    background-color: var(--secondary-color);
    color: var(--bg-light);
    padding: 64px 0 32px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-col {
    flex: 1 1 220px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--bg-white);
}

.footer-col p {
    color: var(--text-light);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: var(--bg-white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
}

.footer-bottom p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    color: var(--bg-light);
    flex: 1 1 400px;
}

.cookie-content a {
    color: var(--accent-color);
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-accept,
.btn-reject {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-accept:hover {
    background-color: #059669;
}

.btn-reject {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}

.btn-reject:hover {
    background-color: var(--bg-white);
    color: var(--secondary-color);
}

.page-hero-small {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 64px 0;
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero-small p {
    font-size: 20px;
    opacity: 0.9;
}

.about-intro {
    padding: 80px 0;
}

.split-content {
    display: flex;
    flex-wrap: wrap;
    gap: 64px;
    align-items: center;
}

.content-text {
    flex: 1 1 450px;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.content-text p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.content-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-light);
}

.content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary-color);
}

.value-card {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.value-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.approach-section {
    padding: 80px 0;
}

.approach-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 56px;
    color: var(--secondary-color);
}

.approach-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.approach-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    display: flex;
    gap: 24px;
    align-items: start;
}

.approach-number {
    width: 48px;
    height: 48px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.approach-card h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.approach-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.team-intro {
    padding: 80px 0;
    background-color: var(--bg-white);
}

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

.content-centered h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary-color);
}

.content-centered p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 0;
}

.cta-card-centered {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: var(--bg-white);
    padding: 64px 48px;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.cta-card-centered h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-card-centered p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-card-centered .cta-primary {
    background-color: var(--bg-white);
    color: var(--primary-color);
}

.cta-card-centered .cta-primary:hover {
    background-color: var(--bg-light);
    transform: translateY(-2px);
}

.services-detailed {
    padding: 64px 0;
}

.service-detail-card {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    align-items: center;
    margin-bottom: 80px;
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1 1 450px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.service-detail-content p {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-includes {
    list-style: none;
    margin-bottom: 24px;
}

.service-includes li {
    padding: 12px 0;
    padding-left: 32px;
    color: var(--text-medium);
    position: relative;
    border-bottom: 1px solid var(--border-color);
}

.service-includes li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 18px;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.service-note {
    font-size: 14px;
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 16px;
}

.service-detail-image {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 400px;
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comparison-section {
    padding: 64px 0;
    background-color: var(--bg-light);
}

.comparison-section h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.comparison-card {
    background-color: var(--bg-white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
    border-left: 4px solid var(--primary-color);
}

.comparison-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.comparison-card p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-info-section {
    padding: 64px 0;
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

.contact-details-card {
    flex: 1 1 450px;
}

.contact-details-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.contact-item {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background-color: #dbeafe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-text p {
    color: var(--text-medium);
    line-height: 1.7;
}

.contact-image-card {
    flex: 1 1 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 500px;
    background-color: var(--bg-light);
}

.contact-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-additional {
    padding: 64px 0;
    background-color: var(--bg-white);
}

.contact-additional h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 40px;
    color: var(--secondary-color);
}

.info-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-horizontal {
    background-color: var(--bg-light);
    padding: 32px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.info-card-horizontal h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary-color);
}

.info-card-horizontal p {
    color: var(--text-medium);
    line-height: 1.7;
}

.map-placeholder {
    padding: 64px 0;
}

.map-card {
    background-color: var(--bg-white);
    padding: 48px;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    text-align: center;
}

.map-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.map-info p {
    color: var(--text-medium);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
}

.thanks-card {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 64px 48px;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 32px;
    background-color: #d1fae5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--success-color);
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--secondary-color);
}

.thanks-message {
    font-size: 18px;
    color: var(--text-medium);
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #dbeafe;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.service-confirmation p {
    color: var(--text-medium);
    margin-bottom: 8px;
}

.service-confirmation strong {
    color: var(--primary-color);
    font-size: 20px;
}

.thanks-next-steps {
    margin: 48px 0;
    text-align: left;
}

.thanks-next-steps h3 {
    font-size: 24px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--secondary-color);
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.step-item {
    flex: 1 1 200px;
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-item p {
    color: var(--text-medium);
    line-height: 1.6;
}

.thanks-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 40px;
}

.legal-page {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.legal-intro {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 32px;
}

.legal-content {
    line-height: 1.8;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-content p {
    color: var(--text-medium);
    margin-bottom: 16px;
}

.legal-content ul {
    margin: 16px 0;
    padding-left: 24px;
    color: var(--text-medium);
}

.legal-content ul li {
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid var(--border-color);
}

.cookie-table th {
    background-color: var(--bg-light);
    font-weight: 600;
    color: var(--secondary-color);
}

.cookie-table td {
    color: var(--text-medium);
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 32px;
    }

    .hero-content {
        padding: 48px 32px;
    }

    .page-hero-small h1 {
        font-size: 36px;
    }

    .section-header-centered h2,
    .why-us-section h2,
    .values-section h2,
    .approach-section h2,
    .content-centered h2,
    .cta-card-centered h2 {
        font-size: 28px;
    }

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

    .service-detail-card {
        padding: 32px 24px;
    }

    .thanks-card {
        padding: 48px 32px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container,
    .container-narrow {
        padding: 0 16px;
    }

    .nav-container {
        padding: 0 16px;
    }
}
