/* Global Styles */
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    
    :root {
        --primary-color: #4a90e2;
        --secondary-color: #f39c12;
        --dark-bg: #2c3e50;
        --light-bg: #ecf0f1;
        --text-dark: #333;
        --text-light: #fff;
        --hover-color: #3498db;
        --shadow: 0 4px 6px rgba(0,0,0,0.1);
    }
    
    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-dark);
        background: #fff;
    }
    
    /* Navigation Bar */
    .navbar {
        background: var(--dark-bg);
        padding: 1rem 0;
        position: sticky;
        top: 0;
        z-index: 1000;
        box-shadow: var(--shadow);
    }
    
    .nav-container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 2rem;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        font-size: 2rem;
        font-weight: bold;
        color: var(--text-light);
        letter-spacing: 2px;
    }
    
    .nav-menu {
        display: flex;
        list-style: none;
        gap: 2rem;
    }
    
    .nav-menu a {
        color: var(--text-light);
        text-decoration: none;
        font-size: 1.1rem;
        transition: color 0.3s ease;
        position: relative;
    }
    
    .nav-menu a::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: var(--secondary-color);
        transition: width 0.3s ease;
    }
    
    .nav-menu a:hover::after,
    .nav-menu a.active::after {
        width: 100%;
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--secondary-color);
    }
    
    .hamburger {
        display: none;
        flex-direction: column;
        cursor: pointer;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: var(--text-light);
        margin: 3px 0;
        transition: 0.3s;
    }
    
    /* Hero Section */
    .hero {
        max-width: 1200px;
        margin: 4rem auto;
        padding: 2rem;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
    }
    
    .hero-content {
        padding: 2rem;
    }
    
    .hero-title {
        font-size: 3.5rem;
        color: var(--dark-bg);
        margin-bottom: 1rem;
        animation: fadeInUp 0.8s ease;
    }
    
    .hero-subtitle {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin-bottom: 1.5rem;
        animation: fadeInUp 0.8s ease 0.2s backwards;
    }
    
    .hero-description {
        font-size: 1.2rem;
        color: #666;
        margin-bottom: 2rem;
        animation: fadeInUp 0.8s ease 0.4s backwards;
    }
    
    .hero-image {
        animation: fadeInRight 0.8s ease 0.3s backwards;
    }
    
    .hero-image img {
        width: 100%;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }
    
    /* CTA Button */
    .cta-button {
        display: inline-block;
        padding: 1rem 2.5rem;
        background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
        color: var(--text-light);
        text-decoration: none;
        border-radius: 50px;
        font-size: 1.1rem;
        font-weight: 600;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
        position: relative;
        overflow: hidden;
    }
    
    .cta-button::before {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        width: 0;
        height: 0;
        border-radius: 50%;
        background: rgba(255,255,255,0.3);
        transform: translate(-50%, -50%);
        transition: width 0.6s, height 0.6s;
    }
    
    .cta-button:hover::before {
        width: 300px;
        height: 300px;
    }
    
    .cta-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 6px 20px rgba(74, 144, 226, 0.5);
    }
    
    /* Features Section */
    .features {
        max-width: 1200px;
        margin: 4rem auto;
        padding: 3rem 2rem;
        text-align: center;
    }
    
    .features h2 {
        font-size: 2.5rem;
        color: var(--dark-bg);
        margin-bottom: 3rem;
    }
    
    .feature-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    
    .feature-card {
        background: var(--light-bg);
        padding: 2rem;
        border-radius: 15px;
        transition: all 0.3s ease;
        cursor: pointer;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .feature-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .feature-card h3 {
        font-size: 1.5rem;
        color: var(--dark-bg);
        margin-bottom: 0.5rem;
    }
    
    .feature-card p {
        color: #666;
    }
    
    /* Page Header */
    .page-header {
        background: linear-gradient(135deg, var(--primary-color), var(--hover-color));
        color: var(--text-light);
        text-align: center;
        padding: 4rem 2rem;
    }
    
    .page-header h1 {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .page-header p {
        font-size: 1.3rem;
        opacity: 0.9;
    }
    
    /* Services Grid */
    .services-grid {
        max-width: 1200px;
        margin: 3rem auto;
        padding: 2rem;
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 2rem;
    }
    
    .service-card {
        background: #fff;
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: all 0.3s ease;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    }
    
    .service-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
        color: var(--dark-bg);
        padding: 1rem 1.5rem 0.5rem;
    }
    
    .service-card p {
        color: #666;
        padding: 0 1.5rem 1rem;
    }
    
    .service-link {
        display: block;
        text-align: center;
        padding: 1rem;
        background: var(--primary-color);
        color: var(--text-light);
        text-decoration: none;
        transition: background 0.3s ease;
    }
    
    .service-link:hover {
        background: var(--hover-color);
    }
    
    /* Service Detail Page */
    .service-detail {
        max-width: 1200px;
        margin: 2rem auto;
        padding: 2rem;
    }
    
    .service-hero {
        width: 100%;
        margin-bottom: 2rem;
        border-radius: 15px;
        overflow: hidden;
    }
    
    .service-hero img {
        width: 100%;
        max-height: 400px;
        object-fit: cover;
    }
    
    .service-content {
        padding: 2rem;
    }
    
    .service-content h1 {
        font-size: 2.5rem;
        color: var(--dark-bg);
        margin-bottom: 1rem;
    }
    
    .service-intro {
        font-size: 1.2rem;
        color: #555;
        margin-bottom: 2rem;
        line-height: 1.8;
    }
    
    .service-content h2 {
        font-size: 2rem;
        color: var(--dark-bg);
        margin: 2rem 0 1rem;
        border-left: 4px solid var(--primary-color);
        padding-left: 1rem;
    }
    
    .feature-list {
        list-style: none;
        padding-left: 0;
    }
    
    .feature-list li {
        padding: 0.8rem 0;
        padding-left: 2rem;
        position: relative;
        color: #555;
    }
    
    .feature-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--secondary-color);
        font-weight: bold;
        font-size: 1.2rem;
    }
    
    /* Pricing Table */
    .pricing-table {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
        margin: 2rem 0;
    }
    
    .price-card {
        background: #fff;
        border: 2px solid #e0e0e0;
        border-radius: 15px;
        padding: 2rem;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .price-card:hover {
        transform: scale(1.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    }
    
    .price-card.featured {
        border-color: var(--primary-color);
        box-shadow: 0 5px 20px rgba(74, 144, 226, 0.2);
        position: relative;
    }
    
    .price-card.featured::before {
        content: 'POPULAR';
        position: absolute;
        top: -15px;
        left: 50%;
        transform: translateX(-50%);
        background: var(--primary-color);
        color: var(--text-light);
        padding: 0.3rem 1rem;
        border-radius: 20px;
        font-size: 0.8rem;
        font-weight: bold;
    }
    
    .price-card h3 {
        font-size: 1.8rem;
        color: var(--dark-bg);
        margin-bottom: 1rem;
    }
    
    .price {
        font-size: 2.5rem;
        color: var(--primary-color);
        font-weight: bold;
        margin: 1rem 0;
    }
    
    .original-price {
        font-size: 1.2rem;
        color: #999;
        text-decoration: line-through;
        margin-top: -0.5rem;
    }
    
    .price-card ul {
        list-style: none;
        padding: 1.5rem 0;
        text-align: left;
    }
    
    .price-card ul li {
        padding: 0.5rem 0;
        color: #666;
    }
    
    .buy-button {
        width: 100%;
        padding: 0.8rem 1.5rem;
        background: var(--primary-color);
        color: var(--text-light);
        border: none;
        border-radius: 25px;
        font-size: 1rem;
        font-weight: 600;
        cursor: pointer;
        transition: all 0.3s ease;
    }
    
    .buy-button:hover {
        background: var(--hover-color);
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(74, 144, 226, 0.3);
    }
    
    /* Related Services */
    .related-services {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
        margin: 2rem 0;
    }
    
    .related-card {
        background: var(--light-bg);
        padding: 1.5rem;
        text-align: center;
        border-radius: 10px;
        text-decoration: none;
        color: var(--dark-bg);
        font-weight: 600;
        transition: all 0.3s ease;
    }
    
    .related-card:hover {
        background: var(--primary-color);
        color: var(--text-light);
        transform: translateY(-3px);
    }
    
    /* Hidden Clown Easter Egg */
    .hidden-clown {
        position: fixed;
        bottom: -300px;
        right: 30px;
        background: #fff;
        padding: 1.5rem;
        border-radius: 15px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.3);
        text-align: center;
        transition: bottom 0.5s ease;
        z-index: 999;
        animation: floatClown 3s ease-in-out infinite;
    }
    
    .hidden-clown.show {
        bottom: 30px;
    }
    
    .hidden-clown p {
        margin-top: 1rem;
        font-weight: bold;
        color: var(--primary-color);
        font-size: 1.1rem;
    }
    
    @keyframes floatClown {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }
    
    /* About Page */
    .about-content {
        max-width: 900px;
        margin: 3rem auto;
        padding: 2rem;
    }
    
    .about-section {
        margin-bottom: 3rem;
    }
    
    .about-section h2 {
        font-size: 2rem;
        color: var(--dark-bg);
        margin-bottom: 1rem;
        border-left: 4px solid var(--primary-color);
        padding-left: 1rem;
    }
    
    .about-section p {
        font-size: 1.1rem;
        color: #555;
        line-height: 1.8;
        margin-bottom: 1rem;
    }
    
    .stats-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .stat-card {
        background: var(--light-bg);
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        transition: all 0.3s ease;
    }
    
    .stat-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }
    
    .stat-card h3 {
        font-size: 3rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }
    
    .stat-card p {
        font-size: 1.1rem;
        color: #666;
    }
    
    .values-list {
        list-style: none;
        padding-left: 0;
    }
    
    .values-list li {
        padding: 1rem 0;
        border-bottom: 1px solid #e0e0e0;
        font-size: 1.1rem;
        color: #555;
    }
    
    /* Contact Page */
    .contact-section {
        max-width: 1200px;
        margin: 3rem auto;
        padding: 2rem;
    }
    
    .contact-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .contact-info h2,
    .contact-form-container h2 {
        font-size: 2rem;
        color: var(--dark-bg);
        margin-bottom: 1.5rem;
    }
    
    .contact-details {
        margin-top: 2rem;
    }
    
    .contact-item {
        margin-bottom: 2rem;
    }
    
    .contact-item h3 {
        font-size: 1.3rem;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }
    
    .contact-item p {
        color: #666;
        font-size: 1.1rem;
    }
    
    /* Contact Form */
    .contact-form {
        background: var(--light-bg);
        padding: 2rem;
        border-radius: 15px;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .form-group label {
        display: block;
        margin-bottom: 0.5rem;
        color: var(--dark-bg);
        font-weight: 600;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 0.8rem;
        border: 2px solid #ddd;
        border-radius: 8px;
        font-size: 1rem;
        transition: border-color 0.3s ease;
    }
    
    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
    }
    
    .consultation-form {
        max-width: 600px;
        margin: 2rem auto;
    }
    
    /* Footer */
    .footer {
        background: var(--dark-bg);
        color: var(--text-light);
        text-align: center;
        padding: 2rem;
        margin-top: 4rem;
    }
    
    /* Animations */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }
    
    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translateX(30px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Responsive Design */
    @media (max-width: 768px) {
        .hamburger {
            display: flex;
        }
        
        .nav-menu {
            display: none;
            flex-direction: column;
            position: absolute;
            top: 100%;
            left: 0;
            width: 100%;
            background: var(--dark-bg);
            padding: 1rem;
        }
        
        .nav-menu.active {
            display: flex;
        }
        
        .hero {
            grid-template-columns: 1fr;
            text-align: center;
        }
        
        .hero-title {
            font-size: 2.5rem;
        }
        
        .contact-grid {
            grid-template-columns: 1fr;
        }
        
        .pricing-table {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 480px) {
        .hero-title {
            font-size: 2rem;
        }
        
        .hero-subtitle {
            font-size: 1.3rem;
        }
        
        .page-header h1 {
            font-size: 2rem;
        }
    }
    