:root {
    /* Монохромная цветовая схема */
    --primary-color: #3a3a3a;
    --primary-light: #5c5c5c;
    --primary-dark: #1e1e1e;
    --accent-color: #4a4aff;
    --accent-light: #7a7aff;
    --accent-dark: #2a2ad5;
    --text-color: #333333;
    --text-light: #777777;
    --text-dark: #111111;
    --bg-color: #f5f5f5;
    --bg-light: #ffffff;
    --bg-dark: #e0e0e0;
    --shadow-color: rgba(0, 0, 0, 0.1);
    --shadow-color-dark: rgba(0, 0, 0, 0.2);
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FFC107;
    
    /* Нейроморфизм переменные */
    --nm-shadow-small: 3px 3px 6px var(--shadow-color), -3px -3px 6px var(--bg-light);
    --nm-shadow-medium: 5px 5px 10px var(--shadow-color), -5px -5px 10px var(--bg-light);
    --nm-shadow-large: 10px 10px 20px var(--shadow-color), -10px -10px 20px var(--bg-light);
    --nm-shadow-inset: inset 3px 3px 6px var(--shadow-color), inset -3px -3px 6px var(--bg-light);
    
    /* Размеры */
    --container-width: 1200px;
    --header-height: 80px;
    --footer-height: 300px;
    --border-radius: 12px;
    --border-radius-small: 6px;
    --border-radius-large: 20px;
    
    /* Анимации */
    --transition-speed: 0.3s;
    --transition-function: ease;
}

/* Общие стили */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.8rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 500;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color var(--transition-speed) var(--transition-function);
}

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

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Кнопки */
.btn, 
button, 
input[type="submit"] {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: var(--border-radius);
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all var(--transition-speed) var(--transition-function);
    box-shadow: var(--nm-shadow-small);
    position: relative;
    overflow: hidden;
}

.btn::after, 
button::after, 
input[type="submit"]::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.btn:hover::after, 
button:hover::after, 
input[type="submit"]:hover::after {
    transform: translate(-50%, -50%) scale(2);
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--nm-shadow-medium);
}

.btn:active, 
button:active, 
input[type="submit"]:active {
    transform: translateY(1px);
    box-shadow: var(--nm-shadow-small);
}

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

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

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

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 1000;
    background-color: var(--bg-light);
    box-shadow: 0 2px 10px var(--shadow-color);
    transition: all var(--transition-speed) var(--transition-function);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.logo a {
    color: var(--primary-color);
}

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

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) var(--transition-function);
}

.nav-links a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.burger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
}

.burger-menu .line {
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: white;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: white;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: white;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.particles-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Our Process Section */
.process {
    background-color: var(--bg-light);
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.process-step {
    display: flex;
    align-items: center;
    padding: 40px;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    box-shadow: var(--nm-shadow-medium);
    position: relative;
    transition: transform var(--transition-speed) var(--transition-function);
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    font-weight: 700;
    color: var(--accent-light);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    z-index: 0;
}

.step-content {
    flex: 1;
    z-index: 1;
    padding-right: 30px;
}

.step-image {
    width: 40%;
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--nm-shadow-small);
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-step:hover .step-image img {
    transform: scale(1.05);
}

/* Projects Section */
.projects {
    background-color: var(--bg-color);
}

.projects-carousel {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.project-card {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: var(--nm-shadow-medium);
    transition: transform var(--transition-speed) var(--transition-function);
}

.project-card:hover {
    transform: translateY(-5px);
}

.card-image {
    height: 350px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
}

.card-content h3 {
    margin-bottom: 15px;
}

.card-content p {
    margin-bottom: 20px;
}

/* History Section */
.history {
    background-color: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 3px;
    background-color: var(--primary-light);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 80px;
}

.timeline-year {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-color);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    z-index: 2;
}

.timeline-content {
    width: 45%;
    padding: 30px;
    background-color: var(--bg-light);
    border-radius: var(--border-radius);
    box-shadow: var(--nm-shadow-medium);
    margin-top: 30px;
    transition: transform var(--transition-speed) var(--transition-function);
}

.timeline-content:hover {
    transform: translateY(-5px);
}

.timeline-image {
    width: 45%;
    height: 250px;
    margin-top: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--nm-shadow-medium);
}

.timeline-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.timeline-item:nth-child(odd) .timeline-content {
    order: 1;
}

.timeline-item:nth-child(odd) .timeline-image {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-content {
    order: 2;
}

.timeline-item:nth-child(even) .timeline-image {
    order: 1;
}

/* External Resources Section */
.external-resources {
    background-color: var(--bg-color);
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.resource-card {
    width: calc(25% - 15px);
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: var(--nm-shadow-medium);
    transition: transform var(--transition-speed) var(--transition-function);
}

.resource-card:hover {
    transform: translateY(-5px);
}

.resource-card .card-image {
    height: 200px;
}

.resource-card .card-content {
    padding: 20px;
    flex: 1;
}

.resource-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--accent-color);
    font-weight: 600;
    position: relative;
}

.resource-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform var(--transition-speed) var(--transition-function);
}

.resource-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Blog Section */
.blog {
    background-color: var(--bg-light);
}

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.blog-card {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: var(--nm-shadow-medium);
    transition: transform var(--transition-speed) var(--transition-function);
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-meta {
    display: flex;
    justify-content: space-between;
    color: var(--text-light);
    margin-bottom: 10px;
    font-size: 0.9rem;
}

/* Webinars Section */
.webinars {
    background-color: var(--bg-color);
}

.webinars-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.webinar-card {
    width: calc(50% - 15px);
    display: flex;
    flex-direction: column;
    border-radius: var(--border-radius);
    overflow: hidden;
    background-color: var(--bg-light);
    box-shadow: var(--nm-shadow-medium);
    transition: transform var(--transition-speed) var(--transition-function);
}

.webinar-card:hover {
    transform: translateY(-5px);
}

.webinar-date {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: var(--accent-color);
    color: white;
    padding: 10px;
    border-radius: var(--border-radius-small);
    text-align: center;
    font-family: 'Oswald', sans-serif;
}

.day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
}

.webinar-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 20px;
    color: var(--text-light);
}

/* Customer Stories Section */
.customer-stories {
    background-color: var(--bg-light);
}

.stories-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.story-card {
    width: calc(50% - 15px);
    padding: 40px;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    box-shadow: var(--nm-shadow-medium);
    transition: transform var(--transition-speed) var(--transition-function);
}

.story-card:hover {
    transform: translateY(-5px);
}

.quote-mark {
    font-family: 'Oswald', sans-serif;
    font-size: 5rem;
    line-height: 1;
    color: var(--accent-light);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial {
    position: relative;
    z-index: 1;
    font-style: italic;
    margin-bottom: 30px;
}

.client-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.client-info img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: var(--nm-shadow-small);
}

.client-details h4 {
    margin-bottom: 5px;
}

.client-details p {
    color: var(--text-light);
    margin-bottom: 0;
}

/* Contact Section */
.contact {
    background-color: var(--bg-color);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-info {
    flex: 1;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    padding: 25px;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    box-shadow: var(--nm-shadow-medium);
    transition: transform var(--transition-speed) var(--transition-function);
}

.info-item:hover {
    transform: translateY(-5px);
}

.map-container {
    height: 300px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--nm-shadow-medium);
}

.map-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    flex: 1;
    padding: 40px;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    box-shadow: var(--nm-shadow-medium);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: none;
    border-radius: var(--border-radius-small);
    background-color: var(--bg-color);
    box-shadow: var(--nm-shadow-inset);
    font-family: 'Nunito', sans-serif;
    transition: all var(--transition-speed) var(--transition-function);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    box-shadow: 0 0 0 2px var(--accent-color), var(--nm-shadow-inset);
}

/* Footer */
.footer {
    background-color: var(--primary-dark);
    color: white;
    padding: 80px 0 20px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    flex: 1 1 300px;
}

.footer-logo h2 {
    color: white;
    margin-bottom: 15px;
}

.footer-links {
    flex: 2 1 600px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.links-column {
    flex: 1 1 200px;
}

.links-column h3 {
    color: white;
    margin-bottom: 20px;
    position: relative;
}

.links-column h3::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.links-column ul {
    list-style: none;
}

.links-column li {
    margin-bottom: 10px;
}

.links-column a {
    color: var(--bg-light);
    opacity: 0.8;
    transition: opacity var(--transition-speed) var(--transition-function);
}

.links-column a:hover {
    opacity: 1;
}

.social-links li {
    margin-bottom: 15px;
}

.social-links a {
    display: flex;
    align-items: center;
}

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

/* Cookie Consent */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    z-index: 9999;
    padding: 15px;
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-content p {
    margin-bottom: 0;
    margin-right: 20px;
    color: white;
}

.cookie-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 8px 16px;
    border: none;
    border-radius: var(--border-radius-small);
    cursor: pointer;
    font-weight: 600;
    white-space: nowrap;
}

/* Success Page */
.success-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    text-align: center;
    padding: 20px;
}

.success-content {
    padding: 60px;
    border-radius: var(--border-radius);
    background-color: var(--bg-light);
    box-shadow: var(--nm-shadow-large);
    max-width: 600px;
}

.success-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 20px;
}

/* Privacy & Terms Pages */
.privacy-content,
.terms-content {
    padding-top: 120px;
    padding-bottom: 80px;
}

.privacy-content h2,
.terms-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

.privacy-content p,
.terms-content p {
    margin-bottom: 20px;
}

/* Media Queries */
@media (max-width: 1200px) {
    .hero-title {
        font-size: 3.5rem;
    }
    
    .project-card,
    .blog-card,
    .webinar-card,
    .story-card {
        width: calc(100% - 30px);
    }
    
    .resource-card {
        width: calc(50% - 15px);
    }
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .step-image {
        width: 100%;
        height: 250px;
        margin-top: 20px;
    }
    
    .process-step {
        flex-direction: column;
    }
    
    .step-content {
        padding-right: 0;
        margin-bottom: 20px;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-year {
        left: 20px;
        transform: translateX(0);
    }
    
    .timeline-content,
    .timeline-image {
        width: calc(100% - 40px);
        margin-left: 40px;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(odd) .timeline-image,
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(even) .timeline-image {
        order: initial;
    }
    
    .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .nav-links {
        position: fixed;
        top: var(--header-height);
        right: -100%;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background-color: var(--bg-light);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transition: right 0.3s ease;
        box-shadow: -2px 0 10px var(--shadow-color);
    }
    
    .nav-links.active {
        right: 0;
    }
    
    .nav-links li {
        margin: 15px 0;
    }
    
    .burger-menu {
        display: flex;
        z-index: 1001;
    }
    
    .burger-menu.active .line:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .burger-menu.active .line:nth-child(2) {
        opacity: 0;
    }
    
    .burger-menu.active .line:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .resource-card {
        width: 100%;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        margin-right: 0;
        margin-bottom: 15px;
    }

    .logo h1 {
        font-size: 1.5rem;
    }
}

.about-hero * {
    color: white;
}

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

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

/* Particle Animation */
.particle {
    position: absolute;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    pointer-events: none;
}

/* Additional Utilities */
.text-center {
    text-align: center;
}

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.py-0 { padding-top: 0; padding-bottom: 0; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-5 { padding-top: 3rem; padding-bottom: 3rem; }

.px-0 { padding-left: 0; padding-right: 0; }
.px-1 { padding-left: 0.25rem; padding-right: 0.25rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 1rem; padding-right: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-5 { padding-left: 3rem; padding-right: 3rem; }