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

body {
    font-family: 'Poppins', 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: #5865F2;
}

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

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

.nav-links a:hover {
    color: #5865F2;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 30px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.cta-button {
    background: white;
    color: #5865F2;
    padding: 15px 30px;
    border: none;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.hero-image {
    margin-top: 50px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 60px;
    color: #333;
    text-align: center;
}

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

.about-text h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

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

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 0;
    background: white;
}

.why-choose h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.why-choose h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #5865F2;
    border-radius: 2px;
}

.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: flex-start;
    margin-top: 60px;
}

.why-text h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.why-text p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.why-list li {
    margin-bottom: 15px;
    padding-left: 40px;
    position: relative;
    color: #333;
    line-height: 1.6;
    font-size: 14px;
}

.why-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 0;
    color: #5865F2;
    font-weight: bold;
    font-size: 18px;
    width: 30px;
    height: 30px;
    background: rgba(88, 101, 242, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.why-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Advantages Section */
.advantages {
    padding: 100px 0;
    background: #f8f9fa;
}

.advantages h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
    position: relative;
}

.advantages h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: #5865F2;
    border-radius: 2px;
}

.advantages-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 18px;
}

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

.advantage-item {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.advantage-item:nth-child(1) {
    border-top-color: #5865F2;
}

.advantage-item:nth-child(2) {
    border-top-color: #8b5cf6;
}

.advantage-item:nth-child(3) {
    border-top-color: #10b981;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: white;
}

.advantage-item:nth-child(1) .advantage-icon {
    background: rgba(88, 101, 242, 0.1);
    color: #5865F2;
}

.advantage-item:nth-child(2) .advantage-icon {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
}

.advantage-item:nth-child(3) .advantage-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.advantage-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

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

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

.advantage-item-2 {
    background: white;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid transparent;
}

.advantage-item-2:nth-child(1) {
    border-top-color: #f59e0b;
}

.advantage-item-2:nth-child(2) {
    border-top-color: #ef4444;
}

.advantage-item-2:nth-child(3) {
    border-top-color: #10b981;
}

.advantage-item-2:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.advantage-item-2 .advantage-icon {
    width: 80px;
    height: 80px;
}

.advantage-item-2:nth-child(1) .advantage-icon {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
}

.advantage-item-2:nth-child(2) .advantage-icon {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.advantage-item-2:nth-child(3) .advantage-icon {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}

.advantage-item-2 h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.advantage-item-2 p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

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

.stats h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
    color: #333;
}

.stats-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 18px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #5865F2;
    display: block;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #5865F2 0%, #7289DA 100%);
    color: white;
    text-align: center;
}

.contact h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-info {
    font-size: 16px;
    margin-bottom: 50px;
    opacity: 0.9;
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px 25px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-family: 'Poppins', sans-serif;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    backdrop-filter: blur(10px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.8);
}

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

.submit-btn {
    background: white;
    color: #5865F2;
    padding: 18px 50px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    text-transform: uppercase;
    width: 100%;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Footer */
footer {
    background: #f8f9fa;
    color: #333;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-bottom: 40px;
}

.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #5865F2;
    margin-right: 60px;
}

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

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

.footer-links a:hover {
    color: #5865F2;
}

.footer-bottom {
    text-align: left;
    padding-top: 30px;
    border-top: 1px solid #e5e5e5;
    color: #999;
    font-size: 14px;
}

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

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

.cookie-icon {
    width: 50px;
    height: 50px;
    background: #5865F2;
    border-radius: 50%;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
}

.cookie-popup h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.cookie-popup p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

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

.cookie-accept {
    background: #5865F2;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

.cookie-settings {
    background: transparent;
    color: #333;
    padding: 12px 25px;
    border: 2px solid #ddd;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    flex: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .hero h1 {
        font-size: 32px;
    }

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

    .about-content,
    .why-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .advantages-grid,
    .advantages-grid-2 {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        flex-direction: column;
        gap: 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .cookie-popup {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        border-radius: 15px 15px 0 0;
        max-width: none;
    }

    .cookie-buttons {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .about h2,
    .why-choose h2,
    .advantages h2,
    .stats h2,
    .contact h2 {
        font-size: 28px;
    }

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

.hidden {
    display: none !important;
}
