/* 
 * Domain.com - Stylesheet
 * Fully responsive design for an accounting services website
 * Using the specified color scheme:
 * - Background: #fffbf6 (milk)
 * - Accents: #3f3dcf (indigo), #ffad3f (mandarin), #00c58e (mint)
 * - Text: #2d2d2d (dark graphite)
 * - Buttons: gradients from #3f3dcf to #00c58e
 * - UI elements: semi-transparent white/gray
 */

/* ===== RESET & BASE STYLES ===== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fffbf6;
    color: #2d2d2d;
    line-height: 1.6;
}

/* Container for all sections */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: #3f3dcf;
    transition: color 0.3s ease;
}

a:hover {
    color: #00c58e;
}

h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

h2:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, #3f3dcf, #00c58e);
    border-radius: 2px;
}

h2.text-center:after {
    left: 50%;
    transform: translateX(-50%);
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
}

ul, ol {
    margin-left: 1.5rem;
    margin-bottom: 1rem;
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

/* Button styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-align: center;
}

.primary-btn {
    background: linear-gradient(90deg, #3f3dcf, #00c58e);
    color: white;
    box-shadow: 0 4px 10px rgba(63, 61, 207, 0.2);
}

.primary-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(63, 61, 207, 0.3);
    color: white;
}

.secondary-btn {
    background-color: rgba(255, 255, 255, 0.8);
    color: #3f3dcf;
    border: 2px solid #3f3dcf;
}

.secondary-btn:hover {
    background-color: rgba(63, 61, 207, 0.05);
    transform: translateY(-2px);
}

/* ===== HEADER STYLES ===== */
.site-header {
    background-color: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
    backdrop-filter: blur(10px);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    max-width: 150px;
}

.logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(90deg, #3f3dcf, #00c58e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: transform 0.3s ease;
    display: inline-block;
}

.logo:hover .logo-text {
    transform: scale(1.05);
}

.header-logo {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item {
    margin-left: 1.5rem;
}

.nav-link {
    color: #2d2d2d;
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover, .nav-link.active {
    color: #3f3dcf;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #3f3dcf, #00c58e);
    transition: width 0.3s ease;
}

.nav-link:hover:after, .nav-link.active:after {
    width: 100%;
}

.nav-cta {
    background: linear-gradient(90deg, #3f3dcf, #00c58e);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 30px;
}

.nav-cta:hover, .nav-cta.active {
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(63, 61, 207, 0.2);
}

.nav-cta:after {
    display: none;
}

.mobile-menu-toggle {
    display: none;
}

/* ===== HERO SECTION ===== */
.hero-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, rgba(255, 251, 246, 0.9), rgba(255, 251, 246, 0.8)), url('./img/XVUt45.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 0 100%);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
    margin: 0 auto;
    padding-right: 0;
    text-align: center;
}

.hero-text h1 {
    font-size: 3.5rem;
    background: linear-gradient(90deg, #3f3dcf, #00c58e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.3s;
    animation-fill-mode: both;
}

.hero-text .btn {
    animation: fadeInUp 1s ease 0.6s;
    animation-fill-mode: both;
}

.hero-animation {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.animated-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.7;
}

.shape-1 {
    width: 180px;
    height: 180px;
    background: linear-gradient(135deg, #3f3dcf, transparent);
    top: 20%;
    left: 20%;
    animation: float 6s ease-in-out infinite;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #00c58e, transparent);
    top: 50%;
    right: 10%;
    animation: float 7s ease-in-out infinite 1s;
}

.shape-3 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ffad3f, transparent);
    bottom: 10%;
    left: 40%;
    animation: float 5s ease-in-out infinite 0.5s;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
    100% {
        transform: translateY(0) rotate(0deg);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== ABOUT SECTION ===== */
.about-section {
    padding: 5rem 0;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
}

.about-text {
    flex: 1;
    min-width: 300px;
    margin-right: 2rem;
}

.about-benefits {
    list-style: none;
    margin-left: 0;
}

.about-benefits li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.about-benefits li:before {
    content: '✓';
    color: #00c58e;
    position: absolute;
    left: 0;
}

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: perspective(1000px) rotateY(0);
}

/* ===== SERVICES SECTION ===== */
.services-section {
    padding: 5rem 0;
    background-color: rgba(63, 61, 207, 0.05);
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: 2rem 0;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
}

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 15px;
    padding: 0;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 100%;
    height: 200px;
    background-color: rgba(63, 61, 207, 0.1);
    overflow: hidden;
    margin: 0;
}

.service-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card:hover .service-img {
    transform: scale(1.05);
}

.service-card h3 {
    color: #3f3dcf;
    margin: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem 1.5rem;
    margin: 0;
}

/* ===== BENEFITS SECTION ===== */
.benefits-section {
    padding: 5rem 0;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f3dcf, #00c58e);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.benefit-i {
    color: white;
    font-size: 1.5rem;
    font-style: normal;
}

.benefit-item h3 {
    color: #3f3dcf;
    margin-bottom: 0.5rem;
}

/* ===== WHY US SECTION ===== */
.why-us-section {
    padding: 5rem 0;
    background-color: rgba(255, 173, 63, 0.05);
    clip-path: polygon(0 0, 100% 5%, 100% 100%, 0 95%);
    margin: 2rem 0;
}

.why-us-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.why-us-item {
    flex: 1;
    min-width: 250px;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.why-us-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.why-us-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 173, 63, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.why-us-i {
    color: #ffad3f;
    font-size: 1.5rem;
    font-style: normal;
}

.why-us-item h3 {
    color: #ffad3f;
    margin-bottom: 0.5rem;
}

/* ===== ORDER FORM SECTION ===== */
.order-form-section {
    padding: 5rem 0;
    background-color: rgba(0, 197, 142, 0.05);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.order-form {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3f3dcf;
    box-shadow: 0 0 0 3px rgba(63, 61, 207, 0.2);
}

.checkbox-group {
    display: flex;
    align-items: center;
}

.checkbox-group input {
    width: auto;
    margin-right: 0.5rem;
}

.checkbox-group label {
    margin-bottom: 0;
}

.submit-group {
    margin-top: 1rem;
}

.submit-button {
    padding: 1rem 2rem;
    background: linear-gradient(90deg, #3f3dcf, #00c58e);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(63, 61, 207, 0.3);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 5rem 0;
}

.testimonials-slider {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: white;
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
}

.testimonial:before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: rgba(63, 61, 207, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-content {
    margin-bottom: 1rem;
}

.testimonial-author {
    text-align: right;
    color: #3f3dcf;
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 5rem 0;
    background-color: rgba(63, 61, 207, 0.05);
    clip-path: polygon(0 5%, 100% 0, 100% 100%, 0 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    border-radius: 5px;
    overflow: hidden;
}

.faq-toggle {
    display: none;
}

.faq-question {
    display: block;
    padding: 1.2rem;
    background-color: white;
    color: #3f3dcf;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 5px;
}

.faq-question:hover {
    background-color: rgba(255, 255, 255, 0.9);
}

.faq-question:after {
    content: '+';
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-toggle:checked + .faq-question {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}

.faq-toggle:checked + .faq-question:after {
    transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    background-color: white;
    transition: max-height 0.3s ease;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.faq-toggle:checked ~ .faq-answer {
    max-height: 500px;
}

.faq-answer p {
    padding: 1rem 1.2rem;
}

/* ===== FOOTER STYLES ===== */
.site-footer {
    background-color: #2d2d2d;
    color: rgba(255, 255, 255, 0.8);
    padding: 5rem 0 2rem;
    clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    margin-top: 3rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-info {
    flex: 2;
    min-width: 300px;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-logo-img {
    height: 40px;
    width: auto;
}

.footer-logo-text {
    font-size: 2rem;
    color: white;
    font-weight: 700;
    background: linear-gradient(90deg, #ffad3f, #00c58e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    display: inline-block;
}

.footer-contact, .footer-links, .footer-legal {
    flex: 1;
    min-width: 200px;
}

.footer-contact h3, .footer-links h3, .footer-legal h3 {
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
}

.footer-contact h3:after, .footer-links h3:after, .footer-legal h3:after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 2rem;
    height: 2px;
    background-color: #ffad3f;
}

.contact-info {
    list-style: none;
    margin-left: 0;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.contact-icon {
    margin-right: 0.5rem;
    font-style: normal;
}

.footer-menu, .legal-links {
    list-style: none;
    margin-left: 0;
}

.footer-menu li, .legal-links li {
    margin-bottom: 0.8rem;
}

.footer-menu a, .legal-links a, .contact-info a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-menu a:hover, .legal-links a:hover, .contact-info a:hover {
    color: white;
    padding-left: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===== POLICY PAGES STYLES ===== */
.policy-section {
    padding: 5rem 0;
}

.policy-header {
    margin-bottom: 3rem;
    text-align: center;
}

.last-updated {
    color: #777;
    font-style: italic;
}

.policy-content {
    max-width: 800px;
    margin: 0 auto;
}

.policy-section-item {
    margin-bottom: 2.5rem;
}

/* ===== THANK YOU PAGE STYLES ===== */
.thank-you-section {
    padding: 5rem 0;
    text-align: center;
}

.thank-you-content {
    max-width: 700px;
    margin: 0 auto;
    padding: 3rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background-color: rgba(0, 197, 142, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.check-icon {
    color: #00c58e;
    font-size: 3rem;
    font-style: normal;
}

.thank-you-actions {
    margin-top: 2rem;
}

.next-steps-section {
    padding: 5rem 0;
}

.steps-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.step-item {
    flex: 1;
    min-width: 200px;
    padding: 1.5rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: flex-start;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3f3dcf, #00c58e);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    margin-right: 1rem;
    flex-shrink: 0;
}

/* ===== COOKIE CONSENT POPUP ===== */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(45, 45, 45, 0.95);
    color: white;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 2000;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.2);
}

.cookie-consent.visible {
    transform: translateY(0);
}

.cookie-text {
    flex: 1;
    margin-right: 2rem;
}

.cookie-buttons {
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    background: linear-gradient(90deg, #3f3dcf, #00c58e);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(63, 61, 207, 0.3);
}

/* Form error messages */
.form-errors {
    background-color: rgba(255, 0, 0, 0.1);
    border-left: 4px solid #ff3b30;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.error-message {
    color: #d43f3a;
    margin-bottom: 0.5rem;
}

.error-message:last-child {
    margin-bottom: 0;
}

/* ===== RESPONSIVE STYLES ===== */
@media screen and (max-width: 992px) {
    h1 {
        font-size: 2.2rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero-section {
        padding: 4rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.8rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .about-text {
        margin-right: 0;
        margin-bottom: 2rem;
    }
    
    .testimonial {
        min-width: 100%;
        margin-bottom: 2rem;
    }
    
    .footer-info, .footer-contact, .footer-links, .footer-legal {
        flex: 1 0 100%;
        margin-bottom: 2rem;
    }
}

@media screen and (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.5rem;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .menu-toggle-btn {
        font-size: 1.5rem;
        padding: 0.5rem;
        color: #3f3dcf;
    }
    
    .main-navigation {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        padding: 1.5rem;
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .main-navigation.menu-open {
        transform: translateY(0);
    }
    
    .nav-menu {
        flex-direction: column;
        align-items: center;
    }
    
    .nav-item {
        margin: 0 0 1rem 0;
    }
    
    .hero-section {
        padding: 3rem 0;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .service-card, .benefit-item, .why-us-item {
        min-width: 100%;
    }
    
    .form-container {
        padding: 1.5rem;
    }
    
    .thank-you-content {
        padding: 2rem;
    }
    
    .cookie-consent {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-text {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    /* Styling for the logo text */
    .logo-text {
        font-size: 1.5rem;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.8rem;
    }
    
    h2 {
        font-size: 1.3rem;
    }
    
    .hero-section {
        padding: 2rem 0;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .about-section, .services-section, .benefits-section, .why-us-section, 
    .order-form-section, .testimonials-section, .faq-section, .policy-section {
        padding: 3rem 0;
    }
} 