/* Reset y configuración base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --electric-lavender: #7F00FF;
    --pale-gold: #FFD700;
    --deep-indigo: #1A0033;
    --soft-gray: #F4F4F4;
    --pure-white: #FFFFFF;
    --transition: all 0.3s ease;
}

html {
    overflow-x: hidden;
    max-width: 100vw;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--deep-indigo);
    background-color: var(--pure-white);
    overflow-x: hidden;
    max-width: 100vw;
    position: relative;
}

/* Animaciones CSS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

/* Header */
header {
    background: linear-gradient(135deg, var(--electric-lavender), var(--deep-indigo));
    color: var(--pure-white);
    padding: 1rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    animation: slideInLeft 0.8s ease-out;
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
    color: var(--pale-gold);
    text-decoration: none;
    animation: pulse 2s infinite;
}

/* Navegación Desktop */
nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: var(--pure-white);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 500;
}

nav a:hover {
    color: var(--pale-gold);
    transform: translateY(-2px);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
}

.burger-line {
    width: 25px;
    height: 3px;
    background-color: var(--pure-white);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(127, 0, 255, 0.9), rgba(26, 0, 51, 0.9)), url('./img/S5yMNo.jpg') center/cover;
    color: var(--pure-white);
    padding: 150px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: var(--pale-gold);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-button {
    display: inline-block;
    background: var(--pale-gold);
    color: var(--deep-indigo);
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: var(--transition);
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    background: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Container general */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.section {
    padding: 80px 0;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

.section:nth-child(even) {
    background-color: var(--soft-gray);
}

.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--electric-lavender);
    animation: fadeInUp 0.8s ease-out;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    animation: slideInLeft 0.8s ease-out;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.service-card {
    background: var(--pure-white);
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(127, 0, 255, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--electric-lavender), var(--pale-gold));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--pure-white);
    animation: pulse 2s infinite;
}

.service-card h3 {
    color: var(--electric-lavender);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

/* Why Choose Us */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.feature-item {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition);
    animation: fadeInUp 0.8s ease-out;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--electric-lavender);
    margin-bottom: 1rem;
    animation: bounce 2s infinite;
}

/* Pricing Section */
section#precios {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
}

section#precios * {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* Services Section - Remove scroll */
section#servicios {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
}

section#servicios * {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* Why Choose Us Section - Remove scroll */
section#por-que-elegirnos {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
}

section#por-que-elegirnos * {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* Testimonials Section - Remove scroll */
section#testimonios {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
}

section#testimonios * {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.pricing-card {
    background: var(--pure-white);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    position: relative;
    transition: var(--transition);
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
    animation: fadeInUp 0.8s ease-out;
    overflow: visible;
    height: auto;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(127, 0, 255, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, var(--electric-lavender), var(--deep-indigo));
    color: var(--pure-white);
    transform: scale(1.05);
    overflow: visible;
}

.pricing-card.featured::before {
    content: 'MÁS POPULAR';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--pale-gold);
    color: var(--deep-indigo);
    padding: 8px 25px;
    border-radius: 25px;
    font-weight: bold;
    font-size: 0.9rem;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--electric-lavender);
}

.pricing-card.featured h3 {
    color: var(--pale-gold);
}

.price {
    font-size: 3rem;
    font-weight: bold;
    color: var(--electric-lavender);
    margin-bottom: 0.5rem;
}

.pricing-card.featured .price {
    color: var(--pale-gold);
}

.price-period {
    color: var(--soft-gray);
    margin-bottom: 2rem;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
    overflow: visible;
}

.pricing-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.pricing-features li:last-child {
    border-bottom: none;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

.testimonial {
    background: var(--pure-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    animation: fadeInUp 0.8s ease-out;
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: 20px;
    font-size: 4rem;
    color: var(--electric-lavender);
    opacity: 0.3;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
    font-weight: bold;
    color: var(--electric-lavender);
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--electric-lavender);
}

/* Contact Form */
.contact-form {
    background: linear-gradient(135deg, var(--electric-lavender), var(--deep-indigo));
    color: var(--pure-white);
    padding: 80px 0;
    width: 100%;
    overflow-x: hidden;
}

.form-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    width: 100%;
    overflow-x: hidden;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 4rem;
    align-items: start;
    margin-top: 3rem;
    width: 100%;
    max-width: 100%;
}

.form-section {
    background: rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.3);
}

.contact-info {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.contact-info h3 {
    color: var(--pale-gold);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info a {
    color: var(--pale-gold);
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    background: var(--pure-white);
    color: var(--deep-indigo);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.form-group label {
    position: absolute;
    top: 15px;
    left: 15px;
    color: #999;
    transition: var(--transition);
    pointer-events: none;
}

.form-group input:focus + label,
.form-group input:valid + label,
.form-group select:focus + label,
.form-group select:valid + label {
    top: -10px;
    left: 10px;
    font-size: 0.8rem;
    color: var(--pale-gold);
    background: var(--deep-indigo);
    padding: 0 5px;
    border-radius: 3px;
}

/* Plan Selection Squares */
.plan-selection {
    display: block;
    width: 100%;
    margin-bottom: 2rem;
}

.plan-square {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: left;
    cursor: auto;
    transition: none;
    position: static;
    display: block;
    margin-bottom: 0.5rem;
}

.plan-square:hover {
    background: none;
    transform: none;
    border-color: initial;
}

.plan-square input[type="radio"] {
    position: static;
    top: auto;
    left: auto;
    opacity: 1;
    width: auto;
    height: auto;
    cursor: pointer;
    margin: 0 0.5rem 0 0;
    z-index: auto;
    display: inline;
}

.plan-square input[type="radio"]:checked ~ .plan-content {
    color: initial;
}

.plan-square input[type="radio"]:checked ~ .plan-content .plan-title {
    color: initial;
}

.plan-square input[type="radio"]:checked ~ .plan-content .plan-price {
    color: initial;
    text-shadow: none;
}

.plan-square input[type="radio"]:checked {
    opacity: 1;
}

.plan-square input[type="radio"]:checked + label {
    border-color: initial;
    background: initial;
    box-shadow: none;
}

/* Fallback for checked state without :has() */
.plan-square.selected {
    border-color: initial;
    background: initial;
    box-shadow: none;
}

.plan-square.selected .plan-content {
    color: initial;
}

.plan-square.selected .plan-title {
    color: initial;
}

.plan-square.selected .plan-price {
    color: initial;
    text-shadow: none;
}

.plan-content {
    pointer-events: auto;
    position: static;
    z-index: auto;
    cursor: auto;
    display: inline;
    width: auto;
    height: auto;
    padding: 0;
    border-radius: 0;
    transition: none;
    border: none;
    background: transparent;
}

.plan-title {
    font-weight: normal;
    margin-bottom: 0;
    font-size: inherit;
    color: var(--pure-white);
    display: inline;
}

.plan-price {
    font-size: inherit;
    font-weight: normal;
    color: var(--pure-white);
    display: inline;
}

.checkbox-group {
    margin: 3rem 0 1.5rem 0;
    clear: both;
}

.checkbox-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.checkbox-item input[type="checkbox"] {
    width: auto;
}

.checkbox-item label {
    color: var(--pure-white) !important;
    font-size: 0.9rem;
}

.checkbox-item label a {
    color: var(--pure-white) !important;
    text-decoration: underline;
}

.checkbox-item label a:hover {
    color: var(--pale-gold) !important;
}

.submit-btn {
    background: var(--pale-gold);
    color: var(--deep-indigo);
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: var(--pure-white);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

/* Footer */
footer {
    background: var(--deep-indigo);
    color: var(--pure-white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    color: var(--pale-gold);
    margin-bottom: 1rem;
}

.footer-section p,
.footer-section a {
    color: var(--pure-white);
    text-decoration: none;
    line-height: 1.8;
}

.footer-section a:hover {
    color: var(--pale-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #ccc;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--deep-indigo);
    color: var(--pure-white);
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: all 0.5s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: var(--transition);
}

.cookie-accept {
    background: var(--pale-gold);
    color: var(--deep-indigo);
}

.cookie-decline {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--pure-white);
}

.cookie-btn:hover {
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 768px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }
    
    .header-content {
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
    }
    
    /* Burger Menu Mobile */
    .burger-menu {
        display: flex;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--deep-indigo);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        width: 100%;
    }
    
    nav.active {
        max-height: 300px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 1rem;
        width: 100%;
    }
    
    nav li {
        border-bottom: 1px solid rgba(255,255,255,0.1);
        width: 100%;
    }
    
    nav a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }
    
    .hero {
        padding: 120px 0 80px;
        width: 100%;
        overflow-x: hidden;
    }
    
    .hero-content {
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
    }
    
    .hero h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }
    
    .services-grid,
    .features-grid,
    .pricing-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        width: 100%;
        overflow: visible;
    }
    
    .pricing-card {
        overflow: visible;
        height: auto;
    }
    
    .pricing-card.featured {
        transform: none;
        overflow: visible;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
        max-width: 100%;
    }
    
    .form-section {
        width: 100%;
        max-width: 100%;
        padding: 1.5rem;
    }
    
    .contact-sidebar {
        width: 100%;
        max-width: 100%;
    }
    
    .form-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .plan-selection {
        grid-template-columns: 1fr;
        width: 100%;
        margin-bottom: 3rem;
    }
    
    .plan-square {
        width: 100%;
        max-width: 100%;
        margin-bottom: 1rem;
    }
    
    .checkbox-group {
        margin-top: 3rem;
        margin-bottom: 2rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        width: 100%;
        max-width: 100vw;
        padding: 0 1rem;
    }
    
    .section {
        padding: 60px 0;
        width: 100%;
        overflow-x: hidden;
        overflow-y: visible;
    }
    
    /* Specifically target pricing section */
    section#precios {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
    }
    
    section#precios * {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
    }
    
    #precios .container {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
    }
    
    #precios .pricing-grid {
        overflow: visible !important;
        height: auto !important;
        max-height: none !important;
        min-height: auto !important;
    }
}

@media (max-width: 480px) {
    html, body {
        overflow-x: hidden !important;
        max-width: 100vw !important;
    }
    
    .hero h1 {
        font-size: 2rem;
        word-wrap: break-word;
        hyphens: auto;
    }
    
    .hero p {
        font-size: 1.1rem;
        word-wrap: break-word;
    }
    
    .section h2 {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .form-container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    .header-content {
        padding: 0 0.5rem;
    }
    
    .container {
        padding: 0 0.5rem;
    }
    
    /* Extra small screens - reduce padding further */
    .contact-layout {
        gap: 1rem;
    }
    
    .form-section {
        padding: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}

/* Gracias page - Remove scroll */
body.gracias-page {
    overflow-x: hidden !important;
    overflow-y: auto !important;
}

body.gracias-page * {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
}

body.gracias-page .section {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
    min-height: auto !important;
}

body.gracias-page .container {
    overflow: visible !important;
    height: auto !important;
    max-height: none !important;
}

/* Apply scroll fixes to all pages */
html {
    overflow-x: hidden !important;
}

body {
    overflow-x: hidden !important;
}

.section {
    overflow-x: hidden !important;
    overflow-y: visible !important;
}

.container {
    overflow-x: hidden !important;
    overflow-y: visible !important;
}

/* Contact form title styling - matching screenshot */
.contact-form h2 {
    text-align: center;
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: none;
}

/* Section subtitle styling */
.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: #F4F4F4;
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Screenshot Form Styles - Matching the provided screenshot */
.screenshot-form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    padding: 2rem;
    background: #FFFFFF;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.screenshot-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.screenshot-form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.screenshot-form-group label {
    color: #1A0033;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.screenshot-form-group .required {
    color: #7F00FF;
}

.screenshot-form-group input,
.screenshot-form-group select {
    padding: 1rem;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-size: 1rem;
    background: #FFFFFF;
    color: #1A0033;
    transition: all 0.3s ease;
}

.screenshot-form-group input:focus,
.screenshot-form-group select:focus {
    outline: none;
    border-color: #7F00FF;
    box-shadow: 0 0 0 3px rgba(127, 0, 255, 0.1);
}

.screenshot-form-group select {
    cursor: pointer;
}

.screenshot-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 1rem 0;
}

.screenshot-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.screenshot-checkbox-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    min-width: 18px;
    margin: 0;
    margin-top: 2px;
    accent-color: #7F00FF;
}

.screenshot-checkbox-item label {
    color: #1A0033;
    font-size: 0.9rem;
    line-height: 1.4;
    cursor: pointer;
    flex: 1;
}

.screenshot-checkbox-item label a {
    color: #7F00FF;
    text-decoration: underline;
}

.screenshot-checkbox-item label a:hover {
    color: #FFD700;
}

.screenshot-submit-btn {
    background: linear-gradient(135deg, #7F00FF, #9932CC);
    color: #FFFFFF;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
    text-transform: none;
}

.screenshot-submit-btn:hover {
    background: linear-gradient(135deg, #6600CC, #7F00FF);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(127, 0, 255, 0.3);
}

/* Responsive styles for screenshot form */
@media (max-width: 768px) {
    .contact-form h2 {
        font-size: 2rem;
    }
    
    .screenshot-form-wrapper {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .screenshot-form-group input,
    .screenshot-form-group select {
        padding: 0.875rem;
    }
    
    .screenshot-submit-btn {
        padding: 0.875rem 1.75rem;
    }
}

@media (max-width: 480px) {
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .screenshot-form-wrapper {
        padding: 1rem;
        margin: 0 0.5rem;
    }
    
    .screenshot-form-group label {
        font-size: 0.9rem;
    }
    
    .screenshot-checkbox-item label {
        font-size: 0.85rem;
    }
} 