* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', Arial, sans-serif;
    background: linear-gradient(#151e31, #243353);
    color: #ffffff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(17, 17, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo img {
    height: 40px;
    width: auto;
    transition: opacity 0.3s;
}

.logo:hover img {
    opacity: 0.8;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.7;
}

.cta-button {
    background-color: #ffffff;
    color: #000000;
    padding: 12px 24px;
    border-radius: 24px;
    text-decoration: none;
    font-size: 14px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #4a4a4a;
}

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 44px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero .subtitle {
    font-size: 16px;
    color: #3a3a3a;
    margin-bottom: 30px;
}

.hero .description {
    font-size: 16px;
    opacity: 0.7;
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero .cta-button {
    background-color: #ffffff;
    color: #000000;
    padding: 15px 30px;
    font-size: 14px;
}

/* Services Grid */
.services {
    padding: 80px 0;
}

.services h2 {
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.service-card {
    background-color: #202020;
    border-radius: 15px;
    padding: 40px 20px;
    text-align: center;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card h3 {
    font-size: 14px;
    font-weight: 400;
}

/* Pricing Section */
.pricing {
    padding: 80px 0;
    background-color: #1a1a1a;
}

.pricing h2 {
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.pricing .subtitle {
    font-size: 16px;
    opacity: 0.7;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.pricing-card {
    background-color: #202020;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #4a90e2;
}

.pricing-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4a90e2;
}

.pricing-card .price {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #ffffff;
}

.pricing-card .price .currency {
    font-size: 18px;
    opacity: 0.7;
}

.pricing-card .features {
    list-style: none;
    margin-bottom: 30px;
    text-align: left;
}

.pricing-card .features li {
    padding: 8px 0;
    font-size: 14px;
    opacity: 0.8;
    position: relative;
    padding-left: 25px;
}

.pricing-card .features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4a90e2;
    font-weight: bold;
}

.pricing-card .cta-button {
    background-color: #4a90e2;
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s;
    display: inline-block;
}

.pricing-card .cta-button:hover {
    background-color: #357abd;
}

/* Technologies Section */
.technologies {
    padding: 80px 0;
    background-color: #1f1f1f;
}

.technologies h2 {
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.technologies .subtitle {
    font-size: 16px;
    opacity: 0.7;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.tech-card {
    background-color: #202020;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}

.tech-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-color: #4a90e2;
}

.tech-card .icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #4a90e2;
}

.tech-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #ffffff;
}

.tech-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
}

.about h2 {
    font-size: 35px;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}

.about .description {
    font-size: 16px;
    opacity: 0.7;
    text-align: center;
    max-width: 519px;
    margin: 0 auto 60px;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.about-card {
    text-align: center;
}

.about-card img {
    width: 100%;
    max-width: 260px;
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 20px;
}

.about-card p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    text-align: center;
}

.contact h2 {
    font-size: 35px;
    font-weight: 500;
    margin-bottom: 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    background-color: #202020;
    padding: 30px;
    border-radius: 15px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 14px;
    opacity: 0.8;
}

/* Footer */
.footer {
    background-color: #000000;
    padding: 40px 0;
    text-align: center;
}

.footer p {
    font-size: 14px;
    opacity: 0.6;
}

.footer-info {
    margin-top: 20px;
    text-align: left;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.footer-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-info li {
    font-size: 14px;
    opacity: 0.6;
    margin-bottom: 5px;
}

.footer-info li a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.footer-info li a:hover {
    opacity: 1;
}



/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid #333;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
}

.cookie-btn.accept {
    background-color: #ffffff;
    color: #000000;
}

.cookie-btn.accept:hover {
    background-color: #e0e0e0;
}

.cookie-btn.reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #ffffff;
    color: #000000;
}

/* Responsive */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero h1 {
        font-size: 30px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
    }
}
