:root {
    --primary-color: #4f46e5;
    --primary-gradient: linear-gradient(90deg, #4f46e5, #7c3aed);
    --secondary-color: #06b6d4;
    --secondary-gradient: linear-gradient(90deg, #06b6d4, #0ea5e9);
    --accent-color: #8b5cf6;
    --text-color: #4b5563;
    --heading-color: #111827;
    --light-bg: #f9fafb;
    --border-color: #e5e7eb;
    --card-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05), 0 8px 10px -6px rgba(0, 0, 0, 0.02);
    --hover-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

body {
    color: var(--text-color);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
    background-color: #ffffff;
}

/* Preloader effect */
body.loading {
    overflow: hidden;
}

body.loading::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    z-index: 9999;
}

body.loading::after {
    content: '';
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    border: 3px solid var(--border-color);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spinner 0.8s linear infinite;
    z-index: 10000;
}

@keyframes spinner {
    to {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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

/* Special wide container just for hero section */
.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Larger hero container for very large screens */
@media (min-width: 1600px) {
    .hero-container {
        max-width: 1800px;
    }
}

/* Typography Enhancements */
h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-weight: 700;
    line-height: 1.2;
}

p {
    color: var(--text-color);
}

/* Button Styles */
.primary-button {
    background: var(--primary-gradient);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(79, 70, 229, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.primary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: -1;
}

.primary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(79, 70, 229, 0.3);
}

.primary-button:hover::before {
    opacity: 1;
}

.secondary-button {
    background: var(--secondary-gradient);
    color: white;
    padding: 0.9rem 1.8rem;
    border-radius: 0.5rem;
    font-weight: 500;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.25);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.secondary-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    transition: opacity 0.3s ease;
    opacity: 0;
    z-index: -1;
}

.secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(6, 182, 212, 0.3);
}

.secondary-button:hover::before {
    opacity: 1;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
    background-color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(79, 70, 229, 0.05) 0%, rgba(79, 70, 229, 0) 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 60%;
    height: 150%;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, rgba(6, 182, 212, 0) 70%);
    z-index: -1;
}

.hero .hero-container {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    align-items: center;
}

/* For larger screens, give even more space to video */
@media (min-width: 1200px) {
    .hero .hero-container {
        grid-template-columns: 1fr 1.8fr;
        gap: 5rem;
    }
}

@media (min-width: 1600px) {
    .hero .hero-container {
        grid-template-columns: 1fr 2fr;
        gap: 6rem;
    }
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.hero h1 {
    font-size: 3.25rem;
    line-height: 1.1;
    font-weight: 800;
    background: linear-gradient(to right, var(--heading-color), var(--primary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.03em;
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-color);
    max-width: 450px;
}

.free-trial-text {
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-color);
    opacity: 0.9;
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-image img {
    max-width: 100%;
    border-radius: 0.75rem;
    box-shadow: var(--card-shadow);
    transition: all 0.5s ease;
    border: 1px solid var(--border-color);
}

.hero-image:hover img {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--hover-shadow);
}

/* Video Container Styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.5s ease;
    border: 1px solid var(--border-color);
    background-color: #000;
}

/* Larger video on desktop */
@media (min-width: 1200px) {
    .video-container {
        max-width: 1200px;
    }
}

@media (min-width: 1400px) {
    .video-container {
        max-width: 1400px;
    }
}

@media (min-width: 1600px) {
    .video-container {
        max-width: 1600px;
    }
}

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

.hero-image:hover .video-container {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--hover-shadow);
}

/* Floating elements for additional visual interest */
.floating-card {
    position: absolute;
    background-color: white;
    padding: 1rem;
    border-radius: 0.75rem;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.floating-card i {
    font-size: 1.25rem;
    color: var(--primary-color);
}

.card-1 {
    top: 10%;
    right: -5%;
    animation: float 6s ease-in-out infinite;
}

.card-2 {
    bottom: 10%;
    left: -5%;
    animation: float 8s ease-in-out infinite;
    animation-delay: 1s;
}

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

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: var(--light-bg);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 60px;
    top: -30px;
    left: 0;
    background: var(--light-bg);
    transform: skewY(-1.5deg);
    z-index: 1;
}

.features .container {
    position: relative;
    z-index: 2;
}

.features-heading {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 3rem;
}

.features-heading i {
    color: var(--primary-color);
    font-size: 1.75rem;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-heading h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--heading-color);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    background-color: white;
    padding: 1.75rem;
    border-radius: 0.75rem;
    transition: all 0.4s ease;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
    border-color: rgba(79, 70, 229, 0.2);
}

.feature-icon {
    font-size: 1.25rem;
    color: white;
    background: var(--primary-gradient);
    padding: 1rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.feature-item:hover .feature-icon {
    transform: rotate(5deg) scale(1.1);
}

.feature-item span {
    font-weight: 600;
    color: var(--heading-color);
    font-size: 1.1rem;
}

/* Use Cases Section */
.use-cases {
    padding: 7rem 0;
}

.section-title {
    font-size: 2.75rem;
    color: var(--heading-color);
    margin-bottom: 1.25rem;
    max-width: 800px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.section-subtitle {
    font-size: 1.25rem;
    margin-bottom: 4rem;
    color: var(--text-color);
    max-width: 700px;
}

.use-case {
    margin-top: 5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.use-case-label {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    letter-spacing: 0.05em;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.use-case-content h3 {
    font-size: 2.25rem;
    color: var(--heading-color);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

.use-case-quote {
    font-size: 1.25rem;
    font-style: italic;
    color: var(--text-color);
    border-left: 3px solid var(--primary-color);
    padding-left: 1.25rem;
    position: relative;
}

.use-case-quote::before {
    content: '"';
    position: absolute;
    left: -0.5rem;
    top: -0.5rem;
    font-size: 3rem;
    color: var(--primary-color);
    opacity: 0.2;
}

.testimonial {
    background-color: white;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid var(--border-color);
    box-shadow: var(--card-shadow);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.testimonial::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--primary-gradient);
    z-index: -1;
}

.testimonial:hover {
    transform: translateY(-10px);
    box-shadow: var(--hover-shadow);
}

.testimonial p {
    margin-bottom: 1.25rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 0.25rem;
}

.author-title {
    font-size: 0.875rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Showcase Section */
.showcase {
    padding: 7rem 0;
    background-color: white;
    position: relative;
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.showcase-item {
    background-color: var(--light-bg);
    padding: 2.5rem;
    border-radius: 1rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
}

.showcase-item:hover {
    transform: translateY(-15px);
    box-shadow: var(--hover-shadow);
    color: white;
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-icon {
    width: 70px;
    height: 70px;
    background-color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.4s ease;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.showcase-icon i {
    font-size: 1.75rem;
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.showcase-item:hover .showcase-icon {
    background-color: white;
    transform: scale(1.1) rotate(10deg);
}

.showcase-item h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
    transition: all 0.4s ease;
}

.showcase-item p {
    transition: all 0.4s ease;
    line-height: 1.6;
}

.showcase-item:hover h3,
.showcase-item:hover p {
    color: white;
}

.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.step {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.step-number {
    background: var(--primary-gradient);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(79, 70, 229, 0.3);
    position: relative;
    z-index: 1;
}

.step-number::before {
    content: '';
    position: absolute;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 1px dashed var(--primary-color);
    opacity: 0.25;
    z-index: -1;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.25;
    }
    50% {
        transform: scale(1.15);
        opacity: 0.5;
    }
    100% {
        transform: scale(1);
        opacity: 0.25;
    }
}

.step-content h3 {
    color: var(--heading-color);
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
}

.step-content p {
    color: var(--text-color);
    font-size: 1.05rem;
}

/* CTA Section */
.cta {
    padding: 7rem 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 40%;
    height: 120%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(-10deg);
    z-index: 1;
}

.cta::after {
    content: '';
    position: absolute;
    bottom: -10%;
    left: -5%;
    width: 30%;
    height: 120%;
    background: rgba(255, 255, 255, 0.05);
    transform: rotate(10deg);
    z-index: 1;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta h2 {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    color: white;
    font-weight: 800;
}

.cta p {
    margin-bottom: 2.5rem;
    font-size: 1.2rem;
    opacity: 0.9;
    color: white;
}

/* Animation Classes */
.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-text.active {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-element {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-element.active {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .hero .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        order: -1;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .floating-card {
        display: none; /* Hide floating cards on tablets */
    }
    
    .showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding: 4rem 0;
    }
    
    .hero h1 {
        font-size: 2.75rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .use-case {
        grid-template-columns: 1fr;
        gap: 3rem;
        margin-top: 3rem;
    }
    
    .features,
    .use-cases,
    .showcase,
    .how-it-works {
        padding: 4rem 0;
    }
    
    .features-list {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .feature-item {
        padding: 1.5rem;
        text-align: center;
    }
    
    .steps {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .section-title {
        font-size: 2.25rem;
        text-align: center;
    }
    
    .section-subtitle {
        text-align: center;
        font-size: 1.1rem;
    }
    
    .testimonial {
        padding: 2rem;
    }
    
    .cta {
        padding: 5rem 0;
    }
    
    .cta h2 {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }
    
    .hero {
        padding: 3rem 0;
    }
    
    .hero h1 {
        font-size: 2.25rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .features,
    .use-cases,
    .showcase,
    .how-it-works {
        padding: 3rem 0;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .primary-button, .secondary-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
        width: 100%;
        justify-content: center;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .use-case-content h3 {
        font-size: 1.75rem;
    }
    
    .use-case-quote {
        font-size: 1.1rem;
    }
    
    .testimonial {
        padding: 1.5rem;
    }
    
    .cta h2 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .cta p {
        font-size: 1rem;
    }
    
    .step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .showcase-item {
        padding: 2rem 1.5rem;
    }
}

/* =============================================================================
   Newsletter Subscription Styles
   ============================================================================= */

/* Newsletter Subscription Box */
.newsletter-subscription {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin: 30px 0;
    backdrop-filter: blur(10px);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.newsletter-content {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    text-align: left;
}

.newsletter-icon {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.newsletter-icon i {
    font-size: 24px;
    color: white;
}

.newsletter-text h3 {
    margin: 0 0 8px 0;
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.newsletter-text p {
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.4;
}

.newsletter-form {
    text-align: center;
}

.email-input-group {
    display: flex;
    gap: 10px;
    max-width: 400px;
    margin: 0 auto 15px auto;
}

.email-input-group input {
    flex: 1;
    padding: 14px 18px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: all 0.3s ease;
}

.email-input-group input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.email-input-group input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

.newsletter-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.newsletter-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.newsletter-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.newsletter-status {
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
}

.newsletter-status.success {
    color: #4ade80;
}

.newsletter-status.error {
    color: #f87171;
}

.newsletter-status.loading {
    color: rgba(255, 255, 255, 0.8);
}

/* Newsletter Mobile Responsive */
@media (max-width: 768px) {
    .newsletter-subscription {
        padding: 20px;
        margin: 20px 0;
    }
    
    .newsletter-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .newsletter-icon {
        width: 50px;
        height: 50px;
    }
    
    .newsletter-icon i {
        font-size: 20px;
    }
    
    .newsletter-text h3 {
        font-size: 18px;
    }
    
    .newsletter-text p {
        font-size: 13px;
    }
    
    .email-input-group {
        flex-direction: column;
        max-width: 100%;
    }
    
    .email-input-group input {
        padding: 12px 16px;
        font-size: 15px;
    }
    
    .newsletter-btn {
        padding: 12px 20px;
        font-size: 15px;
        justify-content: center;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .newsletter-subscription {
        padding: 15px;
    }
    
    .newsletter-text h3 {
        font-size: 16px;
    }
    
    .newsletter-text p {
        font-size: 12px;
    }
}