.service-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card-content {
    padding: 25px;
}

.service-card h3 {
    font-size: 20px;
    color: #FF9500;
    margin-bottom: 15px;
}

.service-card p {
    color: #666;
    font-size: 14px;
    line-height: 1.5;
}

.services-cta {
    text-align: center;
}.cta-button {
    background: #4F46E5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.cta-button:hover {
    background: #4338CA;
}* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #333;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-links a {
    text-decoration: none;
    color: #666;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #4F46E5;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.mobile-menu span {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #FF9500 0%, #FFB84D 100%);
    padding: 120px 0 80px;
    color: #333;
}

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

.hero-image {
    order: 1;
}

.hero-image img {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
}

.hero-text {
    order: 2;
}

.hero-text h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #333;
}

.hero-text p {
    font-size: 16px;
    margin-bottom: 30px;
    color: #333;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background: #F9FAFB;
}

.about h2 {
    font-size: 36px;
    color: #FF9500;
    margin-bottom: 30px;
}

.about p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #666;
}

.features {
    margin-top: 40px;
}

.features h3 {
    font-size: 24px;
    color: #FF9500;
    margin-bottom: 20px;
}

.features ul {
    list-style: none;
    margin-bottom: 30px;
}

.features li {
    padding: 8px 0;
    position: relative;
    padding-left: 20px;
    color: #666;
}

.features li::before {
    content: "•";
    color: #FF9500;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.about-image {
    margin-top: 40px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
}

/* Services Section */
.services {
    padding: 80px 0;
    background: #E5E7EB;
}

.services h2 {
    font-size: 36px;
    color: #FF9500;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.services-bottom {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background: white;
}

.pricing h2 {
    font-size: 36px;
    color: #FF9500;
    margin-bottom: 50px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: #F8F9FA;
    border-radius: 15px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
}

.pricing-card.featured {
    background: #4F46E5;
    color: white;
    transform: scale(1.05);
}

.pricing-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

.pricing-card.featured h3 {
    color: white;
}

.pricing-card .price {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.pricing-card.featured .price {
    color: white;
}

.pricing-card ul {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card li {
    padding: 8px 0;
    position: relative;
    padding-left: 25px;
    font-size: 14px;
    color: #666;
}

.pricing-card.featured li {
    color: white;
}

.pricing-card li::before {
    content: "✓";
    color: #4F46E5;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.pricing-card.featured li::before {
    color: white;
}

.pricing-button {
    background: #4F46E5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
    text-decoration: none;
    display: inline-block;
}

.pricing-card.featured .pricing-button {
    background: white;
    color: #4F46E5;
}

.pricing-button:hover {
    background: #4338CA;
}

.pricing-card.featured .pricing-button:hover {
    background: #f1f1f1;
}

.pricing-image {
    margin-top: 50px;
}

.pricing-image img {
    width: 100%;
    border-radius: 15px;
}

/* About Company Section */
.about-company {
    padding: 80px 0;
    background: white;
}

.about-company h2 {
    font-size: 36px;
    color: #FF9500;
    margin-bottom: 30px;
}

.about-company p {
    font-size: 16px;
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #FF9500 0%, #FFB84D 100%);
    color: white;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 50px;
    align-items: start;
}

.contact h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.contact p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.6;
}

.contact-info p {
    margin-bottom: 10px;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
}

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

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s;
    background: #F9FAFB;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4F46E5;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-button {
    background: #4F46E5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

.submit-button:hover {
    background: #4338CA;
}

.contact-image img {
    width: 100%;
    border-radius: 15px;
}

/* Footer */
footer {
    background: #1F2937;
    color: white;
    padding: 40px 0;
    text-align: center;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 30px;
}

.footer-section h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section p,
.footer-section a {
    color: #9CA3AF;
    text-decoration: none;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    color: #9CA3AF;
    font-size: 14px;
}

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 400px;
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    border: 3px solid #4F46E5;
    display: none;
}

.cookie-popup.show {
    display: block;
}

.cookie-icon {
    text-align: center;
    margin-bottom: 20px;
    font-size: 48px;
}

.cookie-popup h3 {
    color: #FF9500;
    font-size: 24px;
    margin-bottom: 15px;
    text-align: center;
}

.cookie-popup p {
    font-size: 14px;
    color: #666;
    margin-bottom: 25px;
    text-align: center;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-button {
    background: #4F46E5;
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-button:hover {
    background: #4338CA;
}

.cookie-button.secondary {
    background: #4F46E5;
}

.cookie-button.secondary:hover {
    background: #4338CA;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .pricing-card.featured {
        transform: none;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .services-bottom {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu {
        display: flex;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .hero-image {
        order: 1;
    }

    .hero-text {
        order: 2;
    }

    .hero-text h1 {
        font-size: 36px;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cookie-popup {
        left: 10px;
        right: 10px;
        padding: 20px;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px 0 60px;
    }

    .hero-text h1 {
        font-size: 28px;
    }

    .hero-text p {
        font-size: 16px;
    }

    .about,
    .services,
    .pricing,
    .about-company,
    .contact {
        padding: 60px 0;
    }

    .about h2,
    .services h2,
    .pricing h2,
    .about-company h2,
    .contact h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 25px;
    }
}