/* CSS Variables */
:root {
    --primary-blue: #0033FF;
    --coral: #FF6B6B;
    --lavender: #C7CEEA;
    --mint: #A1E3A1;
    --dark-gray: #2E2E2E;
    --light-gray: #F9F9F9;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 51, 255, 0.1);
    --shadow-hover: rgba(0, 51, 255, 0.2);
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    padding-top: 5rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 2px 20px var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease-in-out;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease-in-out;
}

.logo a:hover {
    transform: scale(1.05);
}

.navigation ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.navigation a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease-in-out;
    position: relative;
}

.navigation a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-blue);
    transition: width 0.3s ease-in-out;
}

.navigation a:hover::after {
    width: 100%;
}

.navigation a:hover {
    color: var(--primary-blue);
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-blue), var(--coral));
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 51, 255, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 51, 255, 0.4);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(199, 206, 234, 0.9), rgba(161, 227, 161, 0.9)), url('./img/SjedvZ.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(0,51,255,0.1)"/></svg>');
    background-size: 50px 50px;
    animation: float 20s infinite linear;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 15px rgba(0, 51, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0, 51, 255, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-blue);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
    border: 2px solid var(--primary-blue);
}

.btn-secondary:hover {
    background: var(--primary-blue);
    color: var(--white);
    transform: translateY(-2px);
}

/* Section Styles */
.section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 1.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease-in-out;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.feature h4 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 8px 30px var(--shadow);
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--coral));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease-in-out;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.service-card .price {
    font-size: 2rem;
    color: var(--coral);
    font-weight: 700;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
}

.service-card li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--mint);
    font-weight: 700;
}

/* Process Section */
.process {
    background: var(--light-gray);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 4px 15px var(--shadow);
    transition: all 0.3s ease-in-out;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-hover);
}

.process-step .step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-blue);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

/* Form Section */
.form-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--coral));
    color: var(--white);
}

.form-section .section-header h2,
.form-section .section-header p {
    color: var(--white);
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s ease-in-out;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-blue);
    box-shadow: 0 0 0 3px rgba(0, 51, 255, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.2rem;
}

.checkbox-group label {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-dark);
}

.checkbox-group a {
    color: var(--primary-blue);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

.form-submit {
    width: 100%;
    background: var(--primary-blue);
    color: var(--white);
    padding: 1rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.form-submit:hover {
    background: var(--coral);
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: var(--white);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: all 0.3s ease-in-out;
}

.footer-section a:hover {
    color: var(--primary-blue);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.contact-info svg {
    color: var(--primary-blue);
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    color: #ccc;
    transition: all 0.3s ease-in-out;
}

.social-link:hover {
    color: var(--primary-blue);
    transform: translateY(-2px);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px var(--shadow);
    z-index: 1000;
    padding: 1rem;
    opacity: 0;
    transform: translateY(100%);
    transition: all 0.3s ease-in-out;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-text h3 {
    color: var(--primary-blue);
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: var(--text-light);
    margin: 0;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cookie-accept {
    background: var(--primary-blue);
    color: var(--white);
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
}

.cookie-accept:hover {
    background: var(--coral);
}

.cookie-info {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.cookie-info:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        padding-top: 4rem;
        overflow-x: hidden;
    }
    
    .container {
        padding: 0 0.5rem;
        max-width: 100%;
    }
    
    /* Header fixes */
    .header-content {
        padding: 0.5rem 0;
        flex-wrap: wrap;
        gap: 0.5rem;
    }
    
    .navigation ul {
        gap: 0.5rem;
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    .logo a {
        font-size: 1rem;
    }
    
    .logo svg {
        width: 32px;
        height: 32px;
    }
    
    /* Hero section */
    .hero {
        padding: 2rem 0;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .hero p {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    /* Section spacing */
    .section {
        padding: 2rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* About section */
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* Services section */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1.5rem;
        margin: 0;
    }
    
    .service-image {
        height: 150px;
        margin-bottom: 1rem;
    }
    
    /* Process section */
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    /* Form section */
    .contact-form {
        padding: 1.5rem;
        margin: 0 0.5rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px; /* Prevent zoom on iOS */
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    /* Cookie banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .cookie-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-accept {
        width: 100%;
    }
    
    /* Thank you page */
    .thank-you-content {
        flex-direction: column;
        gap: 2rem;
    }
    
    .success-message {
        padding: 1.5rem;
    }
    
    .success-message h1 {
        font-size: 2rem;
    }
    
    .steps-grid {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .contact-details {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Strict mobile optimization */
    body {
        padding-top: 3.5rem;
        overflow-x: hidden;
        width: 100%;
    }
    
    .container {
        padding: 0 0.75rem;
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    /* Header mobile optimization */
    .header {
        padding: 0;
    }
    
    .header-content {
        padding: 0.3rem 0;
        justify-content: space-between;
        flex-wrap: nowrap;
    }
    
    .navigation ul {
        gap: 0.3rem;
        font-size: 0.7rem;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .navigation ul::-webkit-scrollbar {
        display: none;
    }
    
    .logo a {
        font-size: 0.9rem;
    }
    
    .logo svg {
        width: 28px;
        height: 28px;
    }
    
    /* Hero mobile optimization */
    .hero {
        padding: 1.5rem 0;
        background-attachment: scroll;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }
    
    .hero p {
        font-size: 0.9rem;
        padding: 0 0.5rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
        padding: 0 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Section mobile optimization */
    .section {
        padding: 1.5rem 0;
    }
    
    .section-header {
        margin-bottom: 2rem;
        padding: 0 0.5rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .section-header p {
        font-size: 0.95rem;
    }
    
    /* About section mobile */
    .about-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .feature {
        padding: 1rem;
        margin: 0;
    }
    
    /* Services mobile */
    .service-card {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .service-image {
        height: 120px;
        margin-bottom: 0.75rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .service-card .price {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .service-card ul {
        margin-bottom: 1rem;
    }
    
    .service-card li {
        font-size: 0.85rem;
        padding: 0.25rem 0;
    }
    
    /* Process mobile */
    .process-step {
        padding: 1rem;
    }
    
    .process-step .step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .process-step h3 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }
    
    .process-step p {
        font-size: 0.85rem;
    }
    
    /* Form mobile optimization */
    .contact-form {
        padding: 1rem;
        margin: 0 0.25rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
        padding: 0.75rem;
    }
    
    .checkbox-group {
        margin-bottom: 0.75rem;
    }
    
    .checkbox-group label {
        font-size: 0.8rem;
    }
    
    .form-submit {
        padding: 0.75rem;
        font-size: 1rem;
    }
    
    /* Footer mobile */
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-section {
        text-align: center;
        margin-bottom: 1.5rem;
    }
    
    .footer-section h3,
    .footer-section h4 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-section p,
    .footer-section li {
        font-size: 0.85rem;
    }
    
    .footer-social {
        justify-content: center;
        gap: 1.5rem;
    }
    
    /* Cookie banner mobile */
    .cookie-banner {
        padding: 0.75rem;
    }
    
    .cookie-text h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .cookie-text p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .cookie-accept {
        padding: 0.5rem 1rem;
        font-size: 0.9rem;
    }
    
    .cookie-info {
        font-size: 0.8rem;
    }
    
    /* Thank you page mobile */
    .thank-you-section {
        min-height: auto;
        padding: 1rem 0;
    }
    
    .success-message {
        padding: 1rem;
    }
    
    .success-icon svg {
        width: 60px;
        height: 60px;
    }
    
    .success-message h1 {
        font-size: 1.6rem;
        margin-bottom: 0.75rem;
    }
    
    .success-subtitle {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .step-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .step-number {
        width: 25px;
        height: 25px;
        font-size: 0.8rem;
    }
    
    .step-item p {
        font-size: 0.8rem;
    }
    
    .contact-card {
        padding: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.85rem;
    }
    
    /* Ensure no horizontal overflow */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }
    
    img,
    svg,
    video {
        max-width: 100%;
        height: auto;
    }
    
    /* Fix any potential overflow issues */
    .service-card::before,
    .hero::before {
        display: none;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.section-header,
.service-card,
.process-step,
.feature {
    animation: fadeInUp 0.6s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-primary {
    color: var(--primary-blue);
}

.text-coral {
    color: var(--coral);
}

.bg-light {
    background: var(--light-gray);
}

.mb-2 {
    margin-bottom: 2rem;
}

.mt-2 {
    margin-top: 2rem;
}

/* Page-specific styles */
.page-content {
    padding: 2rem 0;
    max-width: 800px;
    margin: 0 auto;
}

.page-content h1 {
    color: var(--primary-blue);
    margin-bottom: 2rem;
}

.page-content h2 {
    color: var(--primary-blue);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.page-content p {
    margin-bottom: 1rem;
    color: var(--text-light);
}

.page-content ul {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.back-link {
    display: inline-block;
    color: var(--primary-blue);
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.3s ease-in-out;
}

.back-link:hover {
    color: var(--coral);
}

/* Thank You Page Styles */
.thank-you-section {
    background: var(--light-gray);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}



.success-message {
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow);
}

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.success-message h1 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.success-subtitle {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

.next-steps {
    margin-bottom: 2rem;
}

.next-steps h3 {
    color: var(--primary-blue);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: 10px;
}

.step-number {
    background: var(--primary-blue);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

.step-item p {
    margin: 0;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.contact-card {
    background: var(--lavender);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.contact-card h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    text-align: center;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-blue);
}

.contact-item svg {
    color: var(--primary-blue);
}

.contact-item a {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
} 