:root {
    --primary-dark: #340064;
    --secondary-dark: #0a0a0a;
    --light-bg: #f8f9ff;
    --dark-bg: #121212;
    --card-light: #ffffff;
    --card-dark: #1b002b;
    --text-light: #333333;
    --text-dark: #f0f0f0;
    --accent: #9d4edd;
    --success: #4caf50;
    --shadow: rgba(52, 0, 100, 0.3);
    --header-white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    transition: background-color 0.3s, color 0.2s;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-light);
    background-color: #ffffff;
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

p {
    color: #000000;
}

h1, h2, h3, h4, h5, h6 {
    color: var(--primary-dark);
}

/* Header Styles */
header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: px;
    color: white;
}

.logo-text span {
    color: var(--accent);
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    text-decoration: none;
    color: white;
    font-weight: 500;
    font-size: 16px;
    padding: 8px 0;
    position: relative;
}

nav a:hover {
    color: var(--accent);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: white;
    cursor: pointer;
}

.cta-button, .secondary-button {
    border: none;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s;
}

.cta-button {
    background: linear-gradient(45deg, var(--primary-dark), var(--accent));
    color: white;
    box-shadow: 0 4px 12px var(--shadow);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px var(--shadow);
}

.theme-toggle-btn {
    background: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.theme-toggle-btn:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.secondary-button {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Hero Section Enhancements */
.hero {
    padding: 100px 0 80px;
    text-align: center;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
}

.hero-feature i {
    color: var(--accent);
    font-size: 1.3rem;
}

.hero-feature span {
    color: var(--primary-dark);
}

/* Section Subtitle */
.section-subtitle {
    text-align: center;
    color: #888888;
    font-size: 1.1rem;
    margin-bottom: 50px;
}

/* Service List */
.service-list {
    list-style: none;
    margin: 20px 0;
    font-size: 0.95rem;
}

.service-list li {
    color: #9d9d9d;
    padding: 5px 0;
}

.service-list li:before {
    content: "✓ ";
    color: var(--accent);
    font-weight: bold;
    margin-right: 8px;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 30px;
    margin: 30px 0;
    justify-content: flex-start;
}

.stat-item {
    text-align: center;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--accent);
    margin-bottom: 5px;
}

.stat-item p {
    color: #888888;
    font-size: 0.9rem;
}

.image-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(52, 0, 100, 0.1) 0%, rgba(157, 78, 221, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: var(--accent);
}

/* Testimonials Section */
.testimonials-section {
    background-color: #f5f5f5;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(52, 0, 100, 0.12);
    text-align: center;
}

.testimonial-stars {
    color: var(--accent);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: #555555;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
}

.testimonial-author p {
    color: #999999;
    font-size: 0.9rem;
}

/* Price Description */
.price-desc {
    color: #999999;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 80px 20px;
    text-align: center;
    margin: 60px 0;
}

.cta-section h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

/* Full Width Button */
.full-width {
    width: 100%;
}

/* Contact Description */
.contact-desc {
    color: #999999;
    font-size: 0.9rem;
}

/* Form Select */
select.form-control {
    cursor: pointer;
}

/* Popular Badge */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

/* Dark Mode */
body.dark-mode {
    background-color: #0a0a0a;
    color: var(--text-dark);
}

body.dark-mode .section {
    background-color: transparent;
}

body.dark-mode .testimonials-section {
    background-color: rgba(0, 0, 0, 0.5);
}

body.dark-mode .testimonial-card {
    background-color: #1b002b;
    color: var(--text-dark);
}

body.dark-mode .testimonial-text {
    color: #cccccc;
}

body.dark-mode .testimonial-author h4 {
    color: white;
}

body.dark-mode .testimonial-author p {
    color: #999999;
}

body.dark-mode .service-card,
body.dark-mode .pricing-card,
body.dark-mode .contact-form,
body.dark-mode .contact-item {
    background-color: #1b002b;
    border-color: rgba(255, 255, 255, 0.05);
    color: var(--text-dark);
}

body.dark-mode .service-card h3,
body.dark-mode .pricing-card h3 {
    color: #9d4edd;
}

body.dark-mode .service-card p,
body.dark-mode p {
    color: #cccccc;
}

body.dark-mode .about-text h3,
body.dark-mode .contact-text h4,
body.dark-mode .section-title,
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
    color: #e0c3ff;
}

body.dark-mode .about-stats {
    color: #cccccc;
}

body.dark-mode .stat-item h4 {
    color: var(--accent);
}

body.dark-mode .stat-item p {
    color: #999999;
}

body.dark-mode .price-desc,
body.dark-mode .contact-desc,
body.dark-mode .section-subtitle {
    color: #999999;
}

body.dark-mode .pricing-features li {
    color: #cccccc;
    border-color: rgba(255, 255, 255, 0.05);
}

body.dark-mode .form-control {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

body.dark-mode .form-control:focus {
    border-color: var(--accent);
}

body.dark-mode .contact-form h3 {
    color: white;
}

body.dark-mode footer {
    background-color: #001a3d;
}

.hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
    line-height: 1.2;
}

.hero h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--accent);
    font-weight: 400;
}

.hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #555555;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

/* Services Section */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: var(--primary-dark);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(52, 0, 100, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(157, 78, 221, 0.1);
    text-align: center;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(52, 0, 100, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, var(--primary-dark), var(--accent));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.service-card p {
    color: #555555;
    margin-bottom: 20px;
}

/* Pricing Section */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: 0 4px 12px rgba(52, 0, 100, 0.12);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 2px solid rgba(157, 78, 221, 0.1);
    text-align: center;
    position: relative;
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 28px rgba(52, 0, 100, 0.2);
}

.pricing-card.featured {
    transform: scale(1.05);
    border: 2px solid var(--accent);
    background: linear-gradient(135deg, #ffffff 0%, rgba(157, 78, 221, 0.05) 100%);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-8px);
}

.pricing-card.featured::before {
    content: "MOST POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 10px;
}

.price span {
    font-size: 1rem;
    color: #999999;
}

.pricing-features {
    list-style: none;
    margin: 25px 0;
    text-align: left;
}

.pricing-features li {
    padding: 8px 0;
    color: #555555;
    border-bottom: 1px solid rgba(52, 0, 100, 0.08);
}

.pricing-features li i {
    color: var(--accent);
    margin-right: 10px;
}

.pricing-note {
    text-align: center;
    margin-top: 30px;
    color: #999999;
}

/* About Section */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-top: 40px;
}

.about-image {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    flex: 1;
}

.about-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.about-text p {
    margin-bottom: 20px;
    color: #555555;
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 40px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    text-align: center;
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: 0 4px 12px rgba(52, 0, 100, 0.12);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(45deg, var(--primary-dark), var(--accent));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: var(--primary-dark);
}

.contact-form-wrapper {
    margin-top: 60px;
}

.contact-form {
    background-color: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(52, 0, 100, 0.12);
}

.contact-form h3 {
    color: var(--primary-dark);
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.contact-form iframe {
    border-radius: 8px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-dark);
    font-weight: 500;
}

.form-control {
    width: 100%;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid rgba(52, 0, 100, 0.2);
    background-color: #ffffff;
    color: #333333;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(157, 78, 221, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
}

.form-note {
    color: #999999;
    font-size: 14px;
    margin-top: 15px;
    text-align: center;
}

/* Footer */
footer {
    background-color: var(--primary-dark);
    padding: 60px 0 30px;
    margin-top: 60px;
    box-shadow: 0 -4px 12px rgba(52, 0, 100, 0.2);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-column h4 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: white;
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-links i {
    margin-right: 8px;
    color: var(--accent);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
}

.social-icon:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

.copyright p {
    margin-bottom: 5px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .about-content {
        flex-direction: column;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-container {
        padding: 15px 0;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--header-white);
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        z-index: 999;
    }
    
    nav.active {
        display: block;
    }
    
    nav ul {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .cta-button, .secondary-button {
        padding: 10px 24px;
        font-size: 14px;
    }
    
    .hero {
        padding: 60px 0 50px;
    }
    
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero h2 {
        font-size: 1.5rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
    
    .hero-buttons button {
        width: 100%;
        max-width: 300px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card {
        padding: 20px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .pricing-card {
        padding: 25px 20px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .about-content {
        gap: 30px;
        margin-top: 30px;
    }
    
    .about-image {
        max-width: 100%;
    }
    
    .about-text h3 {
        font-size: 1.5rem;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-control {
        padding: 12px;
        font-size: 16px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-column h4 {
        font-size: 1.1rem;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
    }
    
    .detailed-service {
        padding: 25px;
    }
    
    .founder-section {
        flex-direction: column;
        padding: 30px;
        gap: 30px;
    }
    
    .founder-image {
        max-width: 100%;
    }
    
    .process-section {
        padding: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-section, .faq-section {
        padding: 30px;
    }
}

@media (max-width: 576px) {
    .logo-text {
        font-size: 16px;
    }
    
    .logo-img {
        height: 35px;
    }
    
    header .cta-button {
        padding: 8px 20px;
        font-size: 13px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
    
    .hero h2 {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
    
    .hero p {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .hero-buttons button {
        max-width: 100%;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card, .pricing-card, .contact-form {
        padding: 20px 15px;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .service-card p {
        font-size: 0.95rem;
    }
    
    .pricing-card h3 {
        font-size: 1.2rem;
    }
    
    .price {
        font-size: 1.8rem;
    }
    
    .about-text h3 {
        font-size: 1.3rem;
    }
    
    .about-text p {
        font-size: 0.95rem;
    }
    
    .contact-form h3 {
        font-size: 1.2rem;
    }
    
    .form-group label {
        font-size: 14px;
    }
    
    .form-control {
        padding: 10px;
        font-size: 16px;
    }
    
    textarea.form-control {
        min-height: 120px;
    }
    
    .footer-column h4 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-links li {
        font-size: 14px;
    }
    
    .copyright {
        font-size: 12px;
        padding: 20px 15px;
    }
    
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .feature {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    
    .founder-info h3 {
        font-size: 1.5rem;
    }
    
    .founder-title {
        font-size: 1rem;
    }
    
    .value-card {
        padding: 20px 15px;
    }
    
    .value-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }
}

/* Add these styles to the existing styles.css file */

/* Services Page Specific */
.detailed-services {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.detailed-service {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(52, 0, 100, 0.1);
    box-shadow: 0 4px 12px rgba(52, 0, 100, 0.12);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-bottom: 25px;
}

.detailed-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-dark), var(--accent));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
    flex-shrink: 0;
}

.service-header h3 {
    color: var(--primary-dark);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.service-subtitle {
    color: var(--accent);
    font-weight: 500;
    font-size: 1.1rem;
}

.service-details p {
    color: #555555;
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.feature i {
    color: var(--accent);
    font-size: 1.1rem;
}

.feature span {
    color: #555555;
}

/* Active navigation link */
nav a.active {
    color: var(--accent);
    font-weight: 600;
}

nav a.active::after {
    width: 100%;
    background-color: var(--accent);
}

@media (max-width: 768px) {
    .hero-features {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }

    .contact-form-wrapper {
        margin-top: 40px;
    }

    .contact-form {
        padding: 20px;
    }

    .contact-form iframe {
        max-width: 100%;
    }
    
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .service-header h3 {
        font-size: 1.5rem;
    }
    
    .detailed-service {
        padding: 25px;
    }
    
    .founder-section {
        flex-direction: column;
        padding: 30px;
    }
    
    .founder-image {
        max-width: 100%;
    }
    
    .process-section {
        padding: 30px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .testimonials-section, .faq-section {
        padding: 30px;
    }
}

/* Collapsible Form Styles */
.form-toggle-section {
    text-align: center;
    margin: 20px 0;
}

.form-toggle-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin: 0 auto 20px;
    padding: 12px 30px;
    background: linear-gradient(45deg, #340064, #E0C3FF);
    color: white;
    border: none;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
}

.form-toggle-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(224, 195, 255, 0.3);
}

.form-toggle-btn i {
    transition: transform 0.3s;
}

.form-toggle-btn.expanded i {
    transform: rotate(180deg);
}

.form-container {
    margin-top: 20px;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    max-height: 2000px;
}

.form-container iframe {
    border-radius: 8px;
    transition: all 0.3s ease;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .form-toggle-btn {
        width: 100%;
        max-width: 300px;
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .form-container iframe {
        height: 1800px;
    }
}

@media (max-width: 576px) {
    .form-container iframe {
        height: 1600px;
    }
}