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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    padding: 20px;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    background: white;
    padding: 50px 40px;
    border-radius: 8px;
    max-width: 500px;
    text-align: center;
}

.cookie-icon {
    font-size: 80px;
    margin-bottom: 20px;
}

.cookie-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c2c2c;
}

.cookie-content p {
    margin-bottom: 30px;
    color: #666;
    font-size: 16px;
    line-height: 1.5;
}

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

.btn-accept {
    background: #000;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-accept:hover {
    background: #333;
}

.btn-refuse {
    background: transparent;
    color: #333;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

/* Header */
.header {
    background: #1a1a1a;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    color: white;
    font-size: 16px;
    font-weight: 600;
}

.nav {
    display: flex;
    gap: 30px;
}

.nav a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    transition: opacity 0.3s;
}

.nav a:hover {
    opacity: 0.7;
}

/* Hero Section */
.hero {
    background: #f5f5f5;
    padding: 60px 0;
}

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

.hero-content h1 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 1.3;
    font-weight: 600;
}

.hero-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-primary {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #333;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Stats Section */
.stats {
    background: white;
    padding: 60px 0;
}

.stats h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

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

.stat-card {
    text-align: center;
}

.stat-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.stat-card p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
}

/* Partner Section */
.partner {
    background: #e8f4f8;
    padding: 60px 0;
}

.partner-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.partner-content h2 {
    font-size: 24px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.partner-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.btn-secondary {
    background: #1a1a1a;
    color: white;
    border: none;
    padding: 12px 35px;
    font-size: 14px;
    border-radius: 25px;
    cursor: pointer;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #333;
}

/* Services Section */
.services {
    background: white;
    padding: 60px 0;
}

.services h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-weight: 600;
}

.services-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.service-item h3 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.service-item p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

.services-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

/* Why Choose Section */
.why-choose {
    background: #f5f5f5;
    padding: 60px 0;
}

.why-choose h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 600;
}

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

.why-card {
    background: white;
    padding: 40px 30px;
    border-radius: 4px;
    text-align: center;
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 16px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 600;
}

.why-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}

/* Blog Section */
.blog {
    background: white;
    padding: 60px 0;
}

.blog h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 50px;
    font-weight: 600;
}

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

.blog-card {
    background: #f5f5f5;
    border-radius: 4px;
    overflow: hidden;
}

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

.blog-content {
    padding: 20px;
}

.blog-content h3 {
    font-size: 15px;
    color: #1a1a1a;
    margin-bottom: 10px;
    font-weight: 600;
}

.blog-content p {
    font-size: 13px;
    color: #666;
    margin-bottom: 15px;
    line-height: 1.6;
}

.blog-link {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background: #f5f5f5;
    padding: 60px 0;
}

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

.contact-content h2 {
    font-size: 28px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-content > p {
    font-size: 14px;
    color: #555;
    margin-bottom: 30px;
    line-height: 1.8;
}

.contact-info {
    margin-bottom: 30px;
}

.contact-info p {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

.contact-form-inline {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-inline input,
.contact-form-inline textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 13px;
}

.contact-form-inline textarea {
    resize: vertical;
}

.contact-image img {
    width: 100%;
    height: auto;
    border-radius: 4px;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 40px 0 20px;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand h3 {
    font-size: 18px;
    font-weight: 600;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-size: 13px;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 968px) {
    .nav {
        display: none;
    }
    
    .hero-grid,
    .services-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .stats-grid,
    .why-grid,
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-content h1 {
        font-size: 24px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
}