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

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #1a1a1a;
    line-height: 1.6;
    overflow-x: hidden;
    background-color: #000000;
}

/* Logo Header */
.logo-header {
    position: absolute;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.logo-header img {
    height: 80px;
    width: auto;
    display: block;
}

@media (max-width: 768px) {
    .logo-header {
        top: 15px;
        padding: 10px 20px;
    }
   
    .logo-header img {
        height: 50px;
    }
}

/* Trusted By Section */
.trusted-by {
    background: white;
    padding: 60px 20px;
    border-top: 1px solid #e0e0e0;
    border-bottom: 1px solid #e0e0e0;
}

.trusted-logo-container {
    max-width: 300px;
    margin: 0 auto;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.trusted-logo-container img {
    width: 100%;
    height: auto;
    display: block;
}

/* Video Section */
.video-section {
    background: #000;
    padding: 0;
    margin-top: 0;
}

.video-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.video-title {
    color: #fff;
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    line-height: 1.3;
}

.video-container {
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(212, 175, 55, 0.3);
    border: 3px solid #d4af37;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

.video-container iframe {
    width: 100%;
    aspect-ratio: 16/9;
    display: block;
}

/* Hero Section */
.hero {
    height: 85vh;
    min-height: 600px;
    background-color: #000000;
    background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.4)),
                      url('https://i.imgur.com/FBpJzDC.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.hero-logo {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.95);
    padding: 15px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.hero-logo img {
    height: 80px;
    width: auto;
    display: block;
}

.hero-content {
    max-width: 900px;
    padding: 140px 20px 0 20px;
    z-index: 10;
    animation: fadeInUp 1s ease-out;
}

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

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: -1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero .subheadline {
    font-size: 1.4rem;
    margin-bottom: 20px;
    font-weight: 300;
    line-height: 1.8;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}

.service-area-badge {
    background: rgba(220, 53, 69, 0.9);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 30px;
    font-weight: 600;
    font-size: 1.1rem;
}

.cta-primary {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 20px 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(220, 53, 69, 0.4);
    margin-bottom: 5px;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(220, 53, 69, 0.6);
    background: #c82333;
}

.cta-secondary {
    display: block;
    color: white;
    font-size: 1.2rem;
    text-decoration: none;
    margin-top: 5px;
    border-bottom: 2px solid #dc3545;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    color: #dc3545;
}

/* Availability Banner */
.availability-banner {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
    padding: 15px;
    font-weight: 600;
    font-size: 1.1rem;
}

.availability-banner span {
    color: #ffd700;
}

/* Section Styles */
section {
    padding: 100px 20px;
}

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

h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 60px;
    color: #2c2c2c;
    font-weight: 700;
}

/* Owner's Story Section */
.owners-story {
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.story-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.story-image img {
    width: 100%;
    height: auto;
    display: block;
}

.story-text h3 {
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 20px;
}

.story-signature {
    font-style: italic;
    color: #666;
    margin-top: 30px;
    font-size: 1.1rem;
}

/* Meet the Team Section */
.meet-team {
    background: white;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.team-member {
    text-align: center;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-10px);
}

.team-photo-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    border-radius: 50%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.team-photo-real {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 4px solid #dc3545;
    box-shadow: 0 5px 20px rgba(0,0,0,0.15);
}

.team-photo-real img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h3 {
    font-size: 1.4rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

.team-member .role {
    color: #dc3545;
    font-weight: 600;
    margin-bottom: 15px;
}

.team-member p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
}

/* Certifications Section */
.certifications {
    background: #2c2c2c;
    color: white;
}

.certifications h2 {
    color: white;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.cert-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid rgba(220, 53, 69, 0.3);
    transition: all 0.3s ease;
}

.cert-card:hover {
    border-color: #dc3545;
    background: rgba(255, 255, 255, 0.08);
}

.cert-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cert-logo {
    height: 60px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.cert-card h3 {
    font-size: 1.3rem;
    color: #dc3545;
    margin-bottom: 10px;
}

.cert-card p {
    color: #ccc;
    line-height: 1.6;
}

/* Service Packages */
.service-packages {
    background: #f8f9fa;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.package-card {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease;
    position: relative;
}

.package-card.featured {
    border: 3px solid #dc3545;
    transform: scale(1.05);
}

.package-card:hover {
    transform: translateY(-10px) !important;
}

.package-card.featured:hover {
    transform: translateY(-10px) scale(1.05) !important;
}

.package-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #dc3545;
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.package-card h3 {
    font-size: 1.8rem;
    color: #2c2c2c;
    margin-bottom: 15px;
}

.package-price {
    font-size: 2.5rem;
    color: #dc3545;
    font-weight: 700;
    margin-bottom: 10px;
}

.package-note {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 25px;
}

.package-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    text-align: left;
}

.package-features li {
    padding: 12px 0;
    border-bottom: 1px solid #e0e0e0;
    position: relative;
    padding-left: 30px;
}

.package-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #28a745;
    font-weight: bold;
    font-size: 1.2rem;
}

.package-cta {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.package-cta:hover {
    background: #c82333;
    transform: translateY(-2px);
}

/* FAQ Section */
.faq-section {
    background: white;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.faq-question {
    padding: 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 700;
    font-size: 1.15rem;
    color: #2c2c2c;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #e9ecef;
}

.faq-icon {
    font-size: 1.5rem;
    color: #dc3545;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 25px 25px 25px;
    color: #666;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* CTA Sections */
.mid-cta {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.mid-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.mid-cta p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Value Proposition */
.value-prop {
    background: #f8f9fa;
}

.value-content {
    max-width: 900px;
    margin: 0 auto;
}

.value-text p {
    font-size: 1.15rem;
    line-height: 1.9;
    color: #333;
    margin-bottom: 30px;
}

.process-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.process-step {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateX(10px);
}

.step-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.process-step h3 {
    font-size: 1.3rem;
    color: #dc3545;
    margin-bottom: 8px;
    font-weight: 700;
}

.process-step p {
    margin: 0;
    font-size: 1rem;
    line-height: 1.6;
}

/* Testimonials */
.testimonials {
    background: white;
}

.team-photo {
    max-width: 1200px;
    margin: 0 auto 60px;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.team-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.portfolio-section {
    margin-top: 0;
    margin-bottom: 60px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-item {
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.portfolio-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.portfolio-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}


.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
}

.stars {
    color: #d4af37;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.testimonial-author {
    font-weight: 700;
    color: #1a3a5c;
}

/* Video Testimonials */
.video-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.video-testimonial {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-testimonial:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@media (max-width: 968px) {
    .video-testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Services */
.services {
    background: #2c2c2c;
    color: white;
}

.services h2 {
    color: white;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.service-item {
    text-align: center;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.service-item h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.bundle-note {
    text-align: center;
    margin-top: 50px;
    font-size: 1.2rem;
    color: #dc3545;
    font-weight: 600;
}

/* Authority */
.authority {
    background: #f8f9fa;
}

.authority-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.authority-item {
    padding: 30px;
}

.authority-icon {
    font-size: 3rem;
    margin-bottom: 15px;
    color: #dc3545;
}

.authority-logo {
    height: 80px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.authority-logo img {
    max-height: 100%;
    max-width: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.authority-item h3 {
    font-size: 1.1rem;
    color: #2c2c2c;
    font-weight: 700;
}

/* Before/After */
.before-after {
    background: white;
}

.before-after-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.slider-container-small {
    position: relative;
    height: 350px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    cursor: ew-resize;
}

.before-image-small, .after-image-small {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.after-image-small {
    clip-path: inset(0 50% 0 0);
}

.slider-handle-small {
    position: absolute;
    width: 4px;
    height: 100%;
    background: #dc3545;
    left: 50%;
    top: 0;
    cursor: ew-resize;
    z-index: 10;
}

.slider-button-small {
    position: absolute;
    width: 40px;
    height: 40px;
    background: #dc3545;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    font-size: 1.2rem;
}

@media (max-width: 968px) {
    .before-after-grid {
        grid-template-columns: 1fr;
    }
   
    .slider-container-small {
        height: 300px;
    }
}

/* Old slider styles - keeping for compatibility */
.before-after {
    background: white;
}

.slider-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    height: 500px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0,0,0,0.2);
}

.before-image, .after-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.before-image {
    background: linear-gradient(rgba(100,100,100,0.3), rgba(100,100,100,0.3)),
                url('https://i.imgur.com/r2qnhf9.jpg');
    background-size: cover;
    background-position: center;
}

.after-image {
    background: linear-gradient(rgba(200,220,240,0.1), rgba(200,220,240,0.1)),
                url('https://i.imgur.com/r2qnhf9.jpg');
    background-size: cover;
    background-position: center;
    clip-path: inset(0 50% 0 0);
}

.slider-handle {
    position: absolute;
    width: 4px;
    height: 100%;
    background: #dc3545;
    left: 50%;
    top: 0;
    cursor: ew-resize;
    z-index: 10;
}

.slider-button {
    position: absolute;
    width: 50px;
    height: 50px;
    background: #dc3545;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.slider-caption {
    text-align: center;
    margin-top: 30px;
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
}

/* Guarantee */
.guarantee {
    background: #f8f9fa;
}

.guarantee-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.guarantee-badge {
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.badge-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: #dc3545;
}

.guarantee-badge h3 {
    font-size: 1.3rem;
    color: #2c2c2c;
    margin-bottom: 10px;
}

/* Final CTA */
.final-cta {
    background: linear-gradient(135deg, #2c2c2c 0%, #3a3a3a 100%);
    color: white;
    text-align: center;
}

.final-cta h2 {
    color: white;
}

.cta-form {
    max-width: 600px;
    margin: 0 auto 40px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c2c2c;
}

.form-submit {
    width: 100%;
    background: #dc3545;
    color: white;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 700;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: #c82333;
    transform: translateY(-2px);
}

.chat-option {
    margin-top: 30px;
    font-size: 1.2rem;
}

.chat-link {
    color: #dc3545;
    text-decoration: none;
    font-weight: 700;
    border-bottom: 2px solid #dc3545;
}

/* Tablet Breakpoint */
@media (max-width: 968px) and (min-width: 769px) {
    .hero {
        height: 75vh;
        min-height: 500px;
    }
    
    .hero-logo {
        padding: 12px 25px;
    }
    
    .hero-logo img {
        height: 60px;
    }
    
    .hero-content {
        padding: 120px 20px 0 20px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .hero .subheadline {
        font-size: 1.2rem;
    }
    
    .cta-primary {
        padding: 18px 45px;
        font-size: 1.2rem;
    }
    
    .cta-secondary {
        font-size: 1.1rem;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 20px 0;
    }
    
    .hero-logo {
        top: 15px;
        padding: 10px 20px;
    }
    
    .hero-logo img {
        height: 50px;
    }
    
    .hero-content {
        padding: 110px 20px 40px 20px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .hero .subheadline {
        font-size: 1.1rem;
    }
    
    .service-area-badge {
        font-size: 0.9rem;
        padding: 8px 20px;
        margin-bottom: 25px;
    }
    
    .cta-primary {
        display: block;
        width: 100%;
        max-width: 300px;
        margin: 0 auto 15px auto;
        padding: 18px 30px;
        font-size: 1.1rem;
    }
    
    .cta-secondary {
        display: block;
        text-align: center;
        font-size: 1rem;
    }
}

@media (max-width: 968px) {
    .hero h1 {
        font-size: 2.5rem;
    }

    .value-content,
    .testimonial-grid,
    .video-testimonials-grid,
    .services-grid,
    .authority-grid,
    .guarantee-grid,
    .packages-grid,
    .team-grid,
    .cert-grid,
    .story-content,
    .before-after-grid,
    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-item img {
        height: 250px;
    }

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

    h2 {
        font-size: 2rem;
    }

    section {
        padding: 60px 20px;
    }
}
