/* Page Container */

/* Hero Section */
.datenschutz-hero {
    background: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 0.5)), 
                url("../src/imgs/externerdatenschutz/datenschutz.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 80px 20px 60px 20px;
    max-width: 100%;
    text-align: center;
}

.datenschutz-container{
    padding-top: 60px;
}


/* Using global h2 styles */

.datenschutz-hero p {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 4rem;
    color: var(--secondary-color);
    opacity: 0.9;
}

/* Hero Content */
.hero-content {
    margin-top: 3rem;
    text-align: center;
}

.hero-content .datenschutz-content {
    color: var(--secondary-color);
}

.hero-content .datenschutz-content p {
    color: var(--secondary-color);
}

.hero-content .datenschutz-highlight {
    background: linear-gradient(135deg, rgba(231, 121, 25, 0.9), rgba(255, 133, 51, 0.9));
    backdrop-filter: blur(10px);
}

/* Content Sections */
.datenschutz-section {
    padding: 2rem 0;
}

.section-content{
    max-width: 1500px;
    margin: auto;
}

/* Using global h2 styles with overrides */
.datenschutz-section h2 {
    color: var(--tertiary-color);
    text-align: center;
}

/* Using global h3 styles with overrides */
.datenschutz-section h3 {
    margin-bottom: 1.5rem;
    color: var(--tertiary-color);
}

/* Two Column Layout */
.datenschutz-two-column {
    display: grid;
    grid-template-columns: 2fr 1fr; 
    gap: 3rem;
    align-items: center;
}

/* Two Column Layout */
.datenschutz-header-column {
    display: grid;
    /* grid-template-columns: 2fr 1fr; */
    /* gap: 3rem; */
    align-items: center;
    margin-bottom: 3rem;
}

.datenschutz-content {
    line-height: 1.8;
}

.datenschutz-content ul {
    list-style: none;
    padding-left: 0;
}

.datenschutz-content li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
}

.datenschutz-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Highlight Box */
.datenschutz-highlight {
    background: linear-gradient(135deg, var(--primary-color), #ff8533);
    color: white;
    padding: 1rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(231, 121, 25, 0.3);
    font-weight: 600;
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 750px;
    margin: 0 auto;
}

/* Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.process-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.process-step-number {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem;
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--tertiary-color);
}

.process-step p {
    font-size: 1rem;
    line-height: 1.6;
    color: #666;
}

/* Section Background Alternation */
.section-secondary {
    background-color: var(--secondary-color);

}

.section-tertiary {
    background-color: var(--tertiary-color);

}

.section-secondary h2,
.section-tertiary h2 {
    color: var(--primary-color);
}

.section-secondary .datenschutz-content,
.section-tertiary .datenschutz-content {
    color: var(--tertiary-color);
}

/* Contact Form */
.contact-section {
    background: var(--tertiary-color);
    padding: 20px 20px 60px 20px;
    border-radius: 0;
    color: var(--secondary-color);
}

.contact-section h2 {
    color: var(--secondary-color);
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.expert-info {
    text-align: center;
    max-width: 500px;
    place-self: anchor-center;
}



.expert-avatar {
    margin-bottom: 2rem;
}

.expert-avatar img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--secondary-color);
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.expert-details h3 {
    color: var(--secondary-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.expert-role {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    font-weight: 600;
}

.contact-info {
    text-align: left;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--primary-color);
    font-size: 0.95rem;
}

.contact-item i {
    color: var(--primary-color);
    width: 20px;
    text-align: center;
    font-size: 1rem;
}

.contact-item strong {
    color: var(--secondary-color);
    font-size: 0.95rem;
}

.contact-item span {
    color: #ccc;
    font-size: 0.95rem;
}

option {
    background: var(--tertiary-color);
    color: var(--secondary-color);
}

/* Contact Form Wrapper */
.contact-form-wrapper {
    /* min-height: 600px; */
    display: flex
;
    align-self: center;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-form {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

.form-grid {
    margin-top: 1.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-size: 0.9rem;
}

.form-group input {
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    width: 100%;
}

.form-group select {
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.7rem center;
    background-size: 1em;
    padding-right: 2.5rem;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus,
.form-group select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(231, 121, 25, 0.1);
    outline: none;
}

/* Select option styling */
.form-group select option {
    background: var(--tertiary-color);
    color: var(--secondary-color);
}

/* Remove spinner arrows from number inputs and tel inputs */
.form-group input[type="number"],
.form-group input[type="tel"] {
    -moz-appearance: textfield;
}

.form-group input[type="number"]::-webkit-outer-spin-button,
.form-group input[type="number"]::-webkit-inner-spin-button,
.form-group input[type="tel"]::-webkit-outer-spin-button,
.form-group input[type="tel"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Error Messages */
.error-message {
    color: #e74c3c;
    font-size: 0.875rem;
    margin-top: 0.5rem;
    display: none;
    font-weight: 500;
}

.error-message-header {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    color: white;
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}



.form-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Disabled button state */
.btn-primary:disabled {
    background-color: transparent;
    color: var(--primary-color);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-primary:disabled:hover {
    background-color: var(--primary-color);
    transform: none;
    color: white;
    box-shadow: none;
}

/* Pricing Section */
.pricing-section {
    /* background: var(--tertiary-color); */
    color: var(--tertiary-color);
}

.pricing-highlight {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(44, 62, 80, 0.3);
    margin-left: auto;
    max-width: 350px;
}

.pricing-amount {
    font-size: 2rem;
    color: var(--primary-color);
    font-weight: 800;
    display: block;
    margin: 0.5rem 0;
}

/* DSGVO Image */
.dsgvo-image {
    text-align: center;
    padding: 1rem;
}

.dsgvo-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    user-select: none;
}

/* Scroll Arrow */
.scroll-arrow {
    position: fixed;
    bottom: 0px;
    left: 50%;
    transform: translateX(-50%);
    transform-origin: center center;
    width: 60px;
    height: 60px;
    background: rgba(231, 121, 25, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(231, 121, 25, 0.3);

}

.iti {
    width: 100% !important;
}

.iti__flag-container {
    background: rgba(255, 255, 255, 0.1) !important;
}

.iti__selected-flag {
    background: rgba(255, 255, 255, 0.1) !important;
    border-right: 1px solid rgba(255, 255, 255, 0.2) !important;
}

.iti__arrow {
    border-top-color: var(--secondary-color) !important;
}

.iti__country-list {
    background: var(--tertiary-color) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    color: var(--secondary-color) !important;
}

.iti__country {
    color: var(--secondary-color) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.iti__country:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}


.iti__search-input, .iti__no-results {
    background: var(--tertiary-color) !important;
    padding: 12px 15px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: var(--secondary-color);
    font-size: 1rem;
    transition: all 0.3s ease;
}

p#kontaktformular-info {
    text-align: center;
}


.scroll-arrow.visible {
    opacity: 1;
    visibility: visible;
    animation: bounce 2s infinite;
}

.scroll-arrow:hover {
    background: var(--primary-color);
    transform: translateX(-50%) scale(1.2);
    box-shadow: 0 8px 30px rgba(231, 121, 25, 0.5);
}

.scroll-arrow:active {
    transform: translateX(-50%) scale(1.1);
    transition: all 0.1s ease;
}

.scroll-arrow i {
    color: white;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.scroll-arrow:hover i {
    transform: scale(1.2);
}

/* Bounce Animation */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Services Layout */
.services-intro {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 4rem;
    color: var(--tertiary-color);
}

.services-layout {
    position: relative;
    width: 100%;
    max-width: 1000px;
    height: 1000px;
    margin: 0 auto;
    margin-top: -12%;
    scale: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* DSGVO Image in Center */
.dsgvo-center {
    position: absolute;
    top: 55%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.dsgvo-center img {
    width: 400px;
    height: auto;
    display: block;
    user-select: none;
}

/* Service Points */
.service-point {
    /* Using global hover-glow-top class for hover effects */
    position: absolute;
    width: 400px;
    height: 185px;
    background: white;
    padding: 1rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    z-index: 5;
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    color: white;
    font-size: 1.4rem;
}

.service-text {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--tertiary-color);
    font-weight: 600;
    cursor: default;
}

/* Position Service Points - Increased spacing for top and bottom */
.service-point-1 {
    top: 15%;
    left: 30%;
    transform: translateY(-50%);
}

.service-point-2 {
    top: 35%;
    left: -20%;
    transform: translateY(-50%);
}

.service-point-3 {
    bottom: 35%;
    left: -20%;
    transform: translateY(50%);
}

.service-point-4 {
    bottom: 0;
    left: 25%;
    transform: translateX(-50%);
}

.service-point-5 {
    bottom: 0px;
    right: 25%;
    transform: translateX(50%);
}

.service-point-6 {
    top: 35%;
    right: -20%;
    transform: translateY(-50%);
}

.service-point-7 {
    bottom: 35%;
    right: -20%;
    transform: translateY(50%);
}

/* Pricing & Benefits Section */
.pricing-description-top {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 4rem;
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 0 20px;
}

.pricing-description-top p {
    margin: 0 auto 2rem;
}

.benefits-cards-horizontal {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.benefit-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid var(--primary-color);
    cursor: default;
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.benefit-icon i {
    color: white;
    font-size: 1.2rem;
}

.benefit-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--tertiary-color);
}

.benefit-card p {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #666;
    margin: 0;
}

/* CTA Section */
.pricing-cta {
    background: var(--tertiary-color);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    margin-top: 2rem;
    box-shadow: 0 10px 30px rgba(231, 121, 25, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content h3 {
    color: white;
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-amount {
    font-size: 2.2rem;
    color: white;
    font-weight: 800;
    margin: 0.5rem 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.cta-content p {
    color: white;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.btn-large {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: white;
    color: var(--primary-color);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    background: var(--tertiary-color);
    color: white;
}

/* Responsive Design */
@media (max-width: 1100px) {
    .datenschutz-hero {
        background-position: 40% center;
        padding: 60px 15px 40px 15px;
    }
    
    .datenschutz-hero h1 {
        font-size: 2.5rem;
    }
    
    .datenschutz-hero p {
        font-size: 1.1rem;
        margin: 0 auto 2rem;
    }

.datenschutz-highlight{
        font-size: 1rem;
}

    .contact-section{
        padding-top: unset;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .expert-avatar img {
        width: 150px;
        height: 150px;
    }

    .pricing-cta{
        border-radius: unset;
        box-shadow: none;
    }
    
    .hero-content {
        margin-top: 2rem;
    }
    
    .datenschutz-two-column {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .process-step {
        padding: 1.5rem;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        justify-content: center;
    }
    
    .form-actions-right {
        align-items: center;
        text-align: center;
    }
    
    .pricing-highlight {
        margin: 2rem auto;
    }
    
    .scroll-arrow {
        width: 50px;
        height: 50px;
        bottom: 30px;
    }
    
    .scroll-arrow:hover {
        transform: translateX(-50%) scale(1.2);
    }
    
    .scroll-arrow:active {
        transform: translateX(-50%) scale(1.1);
    }
    
    .services-layout {
        height: auto;
        padding: 1rem;
        max-width: 100%;
        scale: 100%;
        margin-top: 0;
    }
    
    .dsgvo-center {
        display: none;
    }
    
    .service-point {
        position: static;
        transform: none !important;
        width: 100%;
        max-width: 280px;
        margin: 1rem auto;
        display: block;
        padding: 1.2rem;
        height: auto;
    }
    
    .services-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        justify-items: center;
    }
    
    .benefits-cards-horizontal {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }
    
    .benefit-card {
        padding: 1rem;
    }
    
    .pricing-cta {
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .pricing-amount {
        font-size: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .datenschutz-hero {
        background-position: 35% center;
        padding: 50px 10px 30px 10px;
    }
    
    .datenschutz-hero h1 {
        font-size: 1.8rem;
    }
    
    .datenschutz-hero p {
        font-size: 1rem;
    }
    
    .datenschutz-section {
        padding: 1.5rem 0;
    }
    
    .contact-form {
        padding: 0 1rem;
    }
    
    .process-step {
        padding: 1rem;
    }
    
    .process-step-number {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        margin: 0 auto 1rem;
    }
    
    .process-step h4 {
        font-size: 1.1rem;
        margin-bottom: 0.8rem;
    }
    
    .process-step p {
        font-size: 0.9rem;
    }
    
    .scroll-arrow {
        width: 45px;
        height: 45px;
        bottom: 20px;
    }
    
    .scroll-arrow:hover {
        transform: translateX(-50%) scale(1.2);
    }
    
    .scroll-arrow:active {
        transform: translateX(-50%) scale(1.1);
    }
    
    .services-intro {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .services-layout {
        grid-template-columns: 1fr;
        gap: 0.8rem;
        padding: 0.5rem;
    }
    
    .service-point {
        width: 95%;
        padding: 1rem;
        max-width: none;
    }
    
    .service-text {
        font-size: 0.85rem;
    }
    
    .service-icon {
        width: 45px;
        height: 45px;
        margin: 0 auto 1rem;
    }
    
    .service-icon i {
        font-size: 1.1rem;
    }
    
    .benefits-cards-horizontal {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    
    .benefit-card {
        padding: 0.8rem;
    }
    
    .benefit-icon {
        width: 40px;
        height: 40px;
        margin: 0 auto 0.8rem;
    }
    
    .benefit-icon i {
        font-size: 1rem;
    }
    
    .benefit-card h4 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .benefit-card p {
        font-size: 0.8rem;
    }
    
    .pricing-cta {
        padding: 1rem;
        margin-top: 1.5rem;
    }
    
    .pricing-amount {
        font-size: 1.6rem;
    }
    
    .cta-content h3 {
        font-size: 1rem;
    }
    
    .cta-content p {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }
    
    .btn-large {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .pricing-description-top {
        font-size: 0.95rem;
        margin-bottom: 2rem;
    }
}

/* Form success with animation */
.form-success {
    text-align: center;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-content i {
    font-size: 3rem;
    color: #28a745;
    margin-bottom: 1rem;
}

.success-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--secondary-color);
}

/* Legacy Success Message (for backward compatibility) */
.success-message {
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, #27ae60, #2ecc71);
    color: white;
    border-radius: 15px;
    font-size: 1.2rem;
    font-weight: 600;
    animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.success-message i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    place-self: center;
}

.success-message h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}



@keyframes popIn {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Fade-in Animations */
.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-in-left.animate,
.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.privacy-link {
    color: #6c757d;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 400;
    transition: all 0.2s ease;
    display: inline-block;
}

.privacy-link:hover {
    color: var(--primary-color);
    text-decoration: underline;
}


