/* for teaching reference */
:root {
    /* color */
    --primary-grey: #333;

    /* width */
    --container-max-width: 1200px;

    /* gap */
    --gap-5-l8: 40px;
    --gap-5-l5: 25px;
    --gap-5-l3: 15px;
    --gap-5-l2: 10px;

    --gap-4-l3: 12px;
    --gap-4-l2: 8px;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--primary-grey);
    overflow-x: hidden;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    padding: 15px 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 18px;
    color: var(--primary-grey);
    flex-shrink: 0;
}

.nav {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
}

.nav a {
    text-decoration: none;
    color: var(--primary-grey);
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

.nav a:hover {
    color: #4285F4;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.btn-signin {
    background: none;
    border: none;
    color: var(--primary-grey);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    padding: 8px 16px;
    transition: color 0.3s;
}

.btn-signin:hover {
    color: #4285F4;
}

.btn-start {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-start:hover {
    background: var(--primary-grey);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Buttons */
.btn-primary {
    background: #4285F4;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-primary:hover {
    background: #3367D6;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.3);
}

.btn-secondary {
    background: white;
    color: #4285F4;
    border: 2px solid #4285F4;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 14px;
}

.btn-secondary:hover {
    background: #4285F4;
    color: white;
}

.btn-large {
    padding: 14px 32px;
    font-size: 16px;
}

/* Hero Section */
.hero {
    background: #FAFAFA;
    padding: 140px 0 100px;
    position: relative;
    overflow: visible;
}

.hero .container {
    position: relative;
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 64px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 30px;
    line-height: 1.2;
    letter-spacing: -1px;
    position: relative;
    display: inline-block;
    padding: 30px 50px;
}

.hero h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px dashed;
    border-radius: 30px;
}

.hero-subtitle {
    font-size: 20px;
    color: #666;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
}

.hero-icon {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    z-index: 1;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.btn-hero-primary {
    background: linear-gradient(135deg, #667EEA 0%, #4285F4 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
}

.btn-hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(66, 134, 244, 0.4);
}

.btn-hero-secondary {
    background: white;
    color: #1a1a1a;
    border: 2px solid #E5E5E5;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-secondary:hover {
    border-color: #4285F4;
    color: #4285F4;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* Problem Statement */
.problem-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.problem-section h2 {
    text-align: center;
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 80px;
    color: #1a1a1a;
}

.problems-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.problem-item {
    display: flex;
    align-items: center;
    gap: 20px;
}

.problem-icon {
    flex-shrink: 0;
}

.problem-item p {
    color: #1a1a1a;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}

.problem-item svg {
    width: 32px;
    height: 32px;
}

.solution-content {
    position: relative;
    z-index: 2;
}

.solution-card h3 {
    font-size: 32px;
    color: white;
    font-size: 42px;
    font-weight: 800;
    margin: 0;
    line-height: 1.3;
}

.solution-rocket {
    position: absolute;
    right: 40px;
    bottom: 0;
    z-index: 1;
    animation: rocketFloat 3s ease-in-out infinite;
}

@keyframes rocketFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.solution-rocket svg {
    width: 150px;
    height: 200px;
}

.solution-card {
    background: linear-gradient(135deg, #5B7EF4 0%, #4BA5F4 100%);
    border-radius: 30px;
    padding: 60px 50px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(66, 133, 244, 0.3);
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* Features */
.features-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #1a1a1a;
}

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

.feature-card {
    background: #F8F9FA;
    padding: 50px 35px;
    border-radius: 20px;
    text-align: left;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.feature-icon {
    margin-bottom: 25px;
    display: flex;
    justify-content: start;
    position: relative;
}

.feature-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.feature-card p {
    color: #666;
    font-size: 15px;
    line-height: 1.7;
}

/* Demo */
.demo-section {
    padding: 80px 0;
    background: white;
}

.demo-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #1a1a1a;
}

.demo-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.demo-steps {
    display: flex;
    align-items: center;
}

.demo-step {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 15px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: #E8F2FF;
    color: #4285F4;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
    color: #666;
}

.step-content p {
    font-size: 13px;
    color: #666;
}

.demo-connector {
    width: 30px;
    height: 2px;
    background: #E5E5E5;
    margin: 0 10px;
}

.demo-chat {
    background: #F9FAFB;
    padding: 30px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-radius: 16px;
}

.chat-message {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.chat-message.user {
    flex-direction: row-reverse;
}

.chat-avatar {
    flex-shrink: 0;
}

.chat-bubble {
    background: white;
    padding: 15px 20px;
    border-radius: 12px;
    max-width: 70%;
    font-size: 14px;
    line-height: 1.5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

/* Tech Section */
.tech-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #E8F2FF 0%, #F5F8FF 100%);
    text-align: center;
}

.tech-icons {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tech-icon {
    animation: bounce 2s ease-in-out infinite;
}

.tech-icon:nth-child(1) {
    animation-delay: 0s;
}

.tech-icon:nth-child(2) {
    animation-delay: 0.2s;
}

.tech-icon:nth-child(3) {
    animation-delay: 0.4s;
}

.tech-icon:nth-child(4) {
    animation-delay: 0.6s;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.tech-section h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.tech-subtitle {
    color: #666;
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
}

/* Testimonials */
.testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 70px;
    color: #1a1a1a;
}

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

.testimonial-card {
    display: flex;
    gap: 30px;
    background: white;
    padding: 0;
    border-radius: 20px;
    transition: all 0.3s;
    align-items: flex-start;
    border: 1px solid #E5E5E5;
    overflow: hidden;
}

.testimonial-image {
    flex-shrink: 0;
    width: 200px;
    height: 350px;
    overflow: hidden;
    border-radius: 20px 0 0 20px;
}

.testimonial-image svg {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonial-content {
    padding: 40px 40px 40px 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-content p {
    font-size: 18px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
    font-weight: 400;
}

.testimonial-author {
    margin-top: auto;
}

.testimonial-author strong {
    display: block;
    color: #1a1a1a;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 15px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #FAFAFA;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact-info h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 25px;
    line-height: 1.2;
}

.contact-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #E8F2FF;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-text h4 {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-text p {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.form-group input {
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 15px;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-group input::placeholder {
    color: #999;
}

.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #E5E5E5;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    min-height: 100px;
    transition: all 0.3s;
}

.form-group textarea:focus {
    outline: none;
    border-color: #4285F4;
    box-shadow: 0 0 0 3px rgba(66, 133, 244, 0.1);
}

.form-group textarea::placeholder {
    color: #999;
}

/* Required field marker */
.required-mark {
    color: #f44336;
    margin-left: 2px;
}

/* Form validation styles */
.form-group {
    position: relative;
}

.form-group.error input,
.form-group.error textarea {
    border-color: #f44336;
    background-color: #fff5f5;
}

.form-group.error input:focus,
.form-group.error textarea:focus {
    border-color: #f44336;
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.form-group.success input,
.form-group.success textarea {
    border-color: #4CAF50;
    background-color: #f1f9f1;
}

.form-group.success input:focus,
.form-group.success textarea:focus {
    border-color: #4CAF50;
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.error-message {
    display: none;
    color: #f44336;
    font-size: 13px;
    margin-top: 4px;
    animation: slideDown 0.3s ease;
}

.form-group.error .error-message {
    display: flex;
    align-items: center;
    gap: 4px;
}

.success-message {
    display: none;
    color: #4CAF50;
    font-size: 13px;
    margin-top: 4px;
}

.form-group.success .success-message {
    display: flex;
    align-items: center;
    gap: 4px;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Checkbox validation */
.form-checkbox.error {
    animation: shake 0.3s ease;
}

.form-checkbox.error label {
    color: #f44336;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4285F4;
}

.form-checkbox label {
    font-size: 14px;
    color: #666;
    cursor: pointer;
}

.btn-submit {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: 10px;
}

.btn-submit:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    padding: 80px 0;
    background: white;
}

.cta-card {
    background: linear-gradient(90deg, #5B7EF4 0%, #4BA5F4 50%, #45D4F4 100%);
    border-radius: 40px;
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(66, 133, 244, 0.2);
}

.cta-content h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    color: white;
    opacity: 0.95;
    line-height: 1.6;
}

.btn-cta {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-cta:hover {
    background: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Notice Section */
.notice-section {
    padding: 60px 0;
    background: #FFE8E8;
}

.notice-section .container {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
}

.notice-box {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px 25px;
    border-radius: 10px;
    border-left: 4px solid #FF6B6B;
    box-shadow: 0 2px 10px rgba(255, 107, 107, 0.2);
}

.notice-box p {
    font-weight: 600;
    color: #FF6B6B;
    font-size: 14px;
}


/* Footer */
.footer {
    background: #FAFAFA;
    color: #666;
    padding: 40px 0;
    border-top: 1px solid #E5E5E5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-left .logo {
    color: #1a1a1a;
}

.footer-left .logo span {
    color: #1a1a1a;
}

.footer-copyright {
    font-size: 14px;
    color: #999;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.footer-links a {
    color: var(--primary-grey);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #4285F4;
}

.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667EEA 0%, #4285F4 100%);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(66, 133, 244, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    z-index: 999;
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(66, 133, 244, 0.4);
}

.back-to-top:active {
    transform: translateY(-2px);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Mobile responsive for back to top */
@media (max-width: 768px) {
    .back-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header .container {
        flex-wrap: wrap;
        gap: 15px;
    }

    .nav {
        order: 3;
        width: 100%;
        /* margin-top: 15px; */
        justify-content: center;
        gap: 25px;
    }

    .header-actions {
        gap: 10px;
    }

    .btn-signin {
        padding: 6px 12px;
        font-size: 14px;
    }

    .btn-start {
        padding: 8px 18px;
        font-size: 13px
    }

    .hero {
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: 36px;
        padding: 20px 30px;
    }

    .hero h1::before {
        border-radius: 20px
    }

    .hero-subtitle {
        font-size: 16px
    }

    .hero-subtitle br {
        display: none;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .btn-hero-primary,
    .btn-hero-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-icon {
        display: none;
    }

    .problem-section h2 {
        font-size: 32px;
        margin-bottom: 50px;
    }

    .problems-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .problem-list {
        gap: 30px;
    }

    .problem-item {
        gap: 15px;
    }

    .problem-icon svg {
        width: 32px;
        height: 32px;
    }

    .solution-card {
        min-height: 400px;
        padding: 40px 30px;
    }

    .solution-rocket {
        right: 20px;
    }

    .solution-rocket svg {
        width: 150px;
        height: 200px;
    }

    .features-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .feature-card {
        padding: 35px 25px;
    }

    .feature-card h3 {
        font-size: 20px;
    }

    .feature-card p {
        font-size: 14px;
    }

    .demo-content,
    .about-content {
        grid-template-columns: 1fr;
    }

    .demo-steps {
        flex-direction: column;
        gap: 20px;
    }

    .demo-connector {
        width: 2px;
        height: 30px;
        margin: 0;
    }

    .testimonials-section h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .testimonial-card {
        flex-direction: column;
    }


    .testimonial-image {
        width: 100%;
        height: 300px;
        border-radius: 20px 20px 0 0;
    }

    .testimonial-content {
        padding: 30px;
    }

    .testimonial-content p {
        font-size: 16px;
        margin-bottom: 20px;
    }

    .testimonial-author strong {
        font-size: 16px;
    }

    .testimonial-author span {
        font-size: 14px;
    }

    .footer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-left {
        align-items: center;
    }

    .footer-links {
        gap: 25px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .footer-links a {
        font-size: 14px;
    }

    .cta-card {
        padding: 50px 30px;
        border-radius: 30px;
    }

    .cta-content h2 {
        font-size: 32px;
    }

    .cta-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .cta-content p br {
        display: none;
    }

    .btn-cta {
        width: 100%;
        max-width: 300px;
    }
}