@import url('https://fonts.googleapis.com/css2?family=Orbitron:wght@400;700;900&family=Caveat:wght@400;600&display=swap');

:root {
    --neon-pink: #ff00ff;
    --neon-cyan: #00ffff;
    --neon-yellow: #ffff00;
    --electric-purple: #8a2be2;
    --hot-orange: #ff4500;
    --deep-navy: #0a0a2e;
    --dark-purple: #16213e;
    --neon-green: #39ff14;
    --gradient-1: linear-gradient(135deg, #ff00ff, #00ffff, #ffff00);
    --gradient-2: linear-gradient(45deg, #8a2be2, #ff4500);
    --gradient-3: linear-gradient(90deg, #00ffff, #ff00ff);
}

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

body {
    font-family: 'Orbitron', monospace;
    background: var(--deep-navy);
    color: white;
    overflow-x: hidden;
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-1);
    padding: 15px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-content p {
    color: var(--deep-navy);
    font-weight: 600;
    font-size: 14px;
}

.cookie-btn {
    background: var(--deep-navy);
    color: var(--neon-cyan);
    border: none;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    font-family: inherit;
    transition: all 0.3s ease;
}

.cookie-btn:hover {
    background: var(--electric-purple);
    color: white;
    transform: scale(1.05);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 46, 0.95);
    backdrop-filter: blur(20px);
    z-index: 999;
    border-bottom: 2px solid var(--neon-cyan);
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
}

.logo {
    font-size: 24px;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    letter-spacing: 2px;
    font-family: 'Orbitron', monospace;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-list a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-pink);
    transition: width 0.3s ease;
}

.nav-list a:hover::after {
    width: 100%;
}

.nav-list a:hover {
    color: var(--neon-cyan);
    text-shadow: 0 0 10px var(--neon-cyan);
}

/* Burger Menu */
.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--neon-cyan);
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: var(--gradient-2);
    padding-top: 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, var(--neon-pink) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, var(--neon-cyan) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, var(--neon-yellow) 0%, transparent 50%);
    opacity: 0.3;
    animation: pulse 4s ease-in-out infinite alternate;
}

@keyframes pulse {
    0% { opacity: 0.3; }
    100% { opacity: 0.6; }
}

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

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 0.9;
    margin-bottom: 20px;
    font-family: 'Orbitron', monospace;
}

.neon-text {
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px var(--neon-pink);
    animation: neonGlow 2s ease-in-out infinite alternate;
}

@keyframes neonGlow {
    0% { filter: brightness(1) saturate(1); }
    100% { filter: brightness(1.2) saturate(1.5); }
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    color: var(--neon-cyan);
    font-family: 'Caveat', cursive;
    font-weight: 600;
}

.hero-cta {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: relative;
    height: 500px;
}

.hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
    border: 3px solid var(--neon-pink);
    box-shadow: 0 0 40px var(--neon-pink);
    animation: float 6s ease-in-out infinite;
}

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

.geometric-overlay {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--gradient-3);
    transform: rotate(45deg);
    opacity: 0.8;
    animation: spin 8s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(45deg); }
    100% { transform: rotate(405deg); }
}

/* CTA Buttons */
.cta-btn {
    display: inline-block;
    padding: 15px 30px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 2px solid transparent;
    font-family: inherit;
    cursor: pointer;
}

.cta-btn.primary {
    background: var(--gradient-1);
    color: var(--deep-navy);
    box-shadow: 0 10px 30px rgba(255, 0, 255, 0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 0, 255, 0.5);
}

.cta-btn.secondary {
    background: transparent;
    color: var(--neon-cyan);
    border: 2px solid var(--neon-cyan);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.cta-btn.secondary:hover {
    background: var(--neon-cyan);
    color: var(--deep-navy);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.5);
}

/* Section Titles */
.section-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    text-align: center;
    margin-bottom: 60px;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.neon-line {
    width: 200px;
    height: 4px;
    background: var(--gradient-3);
    margin: 0 auto;
    border-radius: 2px;
    animation: pulse 2s ease-in-out infinite alternate;
}

/* Research Section */
.research {
    padding: 120px 0;
    position: relative;
    background: var(--dark-purple);
}

.research-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
    z-index: 1;
}

.research-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.research-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    border: 2px solid var(--neon-cyan);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.research-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, var(--neon-pink), transparent);
    animation: rotate 4s linear infinite;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.research-card:hover::before {
    opacity: 0.1;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    display: block;
}

.research-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-yellow);
    font-weight: 700;
}

.research-card p {
    font-family: 'Caveat', cursive;
    font-size: 18px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.stat {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--neon-pink);
    text-shadow: 0 0 10px var(--neon-pink);
}

.research-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 20px 40px rgba(255, 0, 255, 0.3);
}

/* Experience Section */
.experience {
    padding: 120px 0;
    background: var(--deep-navy);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 98px,
            var(--neon-cyan) 100px
        );
    opacity: 0.1;
    pointer-events: none;
}

.experience-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 20px 0;
    margin-bottom: 40px;
}

.experience-card {
    min-width: 400px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border-radius: 25px;
    overflow: hidden;
    border: 3px solid var(--electric-purple);
    transition: all 0.4s ease;
    scroll-snap-align: center;
    position: relative;
}

.experience-card.active {
    border-color: var(--neon-pink);
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 0, 255, 0.4);
}

.exp-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: all 0.3s ease;
}

.experience-card:hover .exp-image {
    transform: scale(1.1);
    filter: saturate(1.5) brightness(1.1);
}

.exp-content {
    padding: 30px;
    position: relative;
}

.exp-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--neon-cyan);
    font-weight: 700;
}

.exp-content p {
    font-family: 'Caveat', cursive;
    font-size: 16px;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.8);
}

.exp-price {
    font-size: 1.8rem;
    font-weight: 900;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.slider-btn {
    background: var(--gradient-2);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 900;
}

.slider-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(138, 43, 226, 0.5);
}

.slider-dots {
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: var(--neon-pink);
    box-shadow: 0 0 15px var(--neon-pink);
}

/* Pricing Section */
.pricing {
    padding: 120px 0;
    background: var(--dark-purple);
    position: relative;
}

.pricing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, var(--neon-yellow) 0%, transparent 70%);
    transform: translate(-50%, -50%);
    opacity: 0.1;
    animation: pulse 3s ease-in-out infinite;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    position: relative;
    z-index: 2;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 2px solid var(--neon-cyan);
    border-radius: 30px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card.featured {
    border-color: var(--neon-pink);
    transform: scale(1.05);
    background: rgba(255, 0, 255, 0.1);
}

.featured-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-1);
    color: var(--deep-navy);
    padding: 8px 25px;
    border-radius: 20px;
    font-weight: 900;
    font-size: 12px;
    letter-spacing: 1px;
}

.price-header h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: var(--neon-yellow);
}

.price {
    font-size: 3.5rem;
    font-weight: 900;
    background: var(--gradient-3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.price span {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
}

.original-price {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    margin-bottom: 20px;
}

.price-features {
    list-style: none;
    margin: 30px 0;
    text-align: left;
}

.price-features li {
    padding: 10px 0;
    font-family: 'Caveat', cursive;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-btn {
    width: 100%;
    margin-top: 20px;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--neon-pink);
    box-shadow: 0 25px 50px rgba(255, 0, 255, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.special-offer {
    text-align: center;
    background: var(--gradient-2);
    padding: 20px;
    border-radius: 15px;
    margin-top: 40px;
}

.special-offer p {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

/* Testimonials Section */
.testimonials {
    padding: 120px 0;
    background: var(--deep-navy);
    position: relative;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--neon-pink) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--neon-cyan) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: 0 0, 25px 25px;
    opacity: 0.1;
    animation: drift 20s linear infinite;
}

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

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--electric-purple);
    border-radius: 25px;
    padding: 40px 30px;
    transition: all 0.3s ease;
    position: relative;
}

.testimonial-card::after {
    content: '"';
    position: absolute;
    top: -20px;
    left: 30px;
    font-size: 5rem;
    color: var(--neon-pink);
    font-weight: 900;
    opacity: 0.3;
}

.testimonial-content p {
    font-family: 'Caveat', cursive;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
}

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

.author-info h4 {
    color: var(--neon-cyan);
    font-weight: 700;
    margin-bottom: 5px;
}

.author-info span {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.rating {
    color: var(--neon-yellow);
    font-size: 1.2rem;
}

.testimonial-card:hover {
    border-color: var(--neon-pink);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(255, 0, 255, 0.2);
}

/* FAQ Section */
.faq {
    padding: 120px 0;
    background: var(--dark-purple);
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 2px solid var(--neon-cyan);
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    cursor: pointer;
    background: transparent;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(255, 0, 255, 0.1);
}

.faq-question h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--neon-cyan);
    margin: 0;
}

.faq-toggle {
    font-size: 2rem;
    font-weight: 900;
    color: var(--neon-pink);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
}

.faq-answer p {
    padding: 0 30px 25px;
    font-family: 'Caveat', cursive;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: var(--deep-navy);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0.1;
    clip-path: polygon(0 0, 100% 20%, 100% 100%, 0 80%);
}

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

.contact-info h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    margin-bottom: 20px;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-family: 'Caveat', cursive;
    font-size: 18px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.8);
}

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

.contact-item h4 {
    color: var(--neon-yellow);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    margin: 0;
    line-height: 1.6;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(15px);
    border: 2px solid var(--neon-pink);
    border-radius: 25px;
    padding: 40px;
}

.contact-form h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 30px;
    text-align: center;
    color: var(--neon-cyan);
}

.form-group {
    margin-bottom: 25px;
}

.form-group input {
    width: 100%;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--electric-purple);
    border-radius: 15px;
    color: white;
    font-family: 'Orbitron', monospace;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-group input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group input:focus {
    outline: none;
    border-color: var(--neon-pink);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.form-submit {
    width: 100%;
    margin-top: 20px;
}

/* Success Popup */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.popup-overlay.show {
    opacity: 1;
    visibility: visible;
}

.popup-content {
    background: var(--gradient-2);
    padding: 40px;
    border-radius: 25px;
    text-align: center;
    max-width: 500px;
    border: 3px solid var(--neon-cyan);
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.3);
}

.popup-content h3 {
    font-size: 1.8rem;
    font-weight: 900;
    margin-bottom: 20px;
    color: white;
}

.popup-content p {
    font-family: 'Caveat', cursive;
    font-size: 18px;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }
    
    .nav-list {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: rgba(10, 10, 46, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 30px;
        gap: 20px;
        transform: translateY(-100vh);
        transition: transform 0.3s ease;
        border-bottom: 2px solid var(--neon-cyan);
    }
    
    .nav-list.active {
        transform: translateY(0);
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .pricing-grid,
    .research-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .experience-slider {
        padding-left: 20px;
    }
    
    .experience-card {
        min-width: 300px;
    }
    
    .cookie-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experience-card {
        min-width: 280px;
    }
    
    .pricing-card,
    .research-card,
    .testimonial-card {
        padding: 25px 20px;
    }
    
    .contact-form {
        padding: 25px;
    }
}