/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ff0000;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    color: #fff;
    font-size: 14px;
    flex: 1;
    min-width: 300px;
}

.cookie-buttons {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #fff;
    color: #ff0000;
}

.cookie-btn.decline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.cookie-btn:hover {
    opacity: 0.8;
}

.cookie-link {
    color: #fff;
    text-decoration: underline;
    font-size: 14px;
}

/* Header */
.header {
    background-color: #ff0000;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Anton', sans-serif;
    font-size: 24px;
    font-weight: 400;
    color: #fff;
    text-align: center;
    letter-spacing: 2px;
    text-align: center;
    display: block;
    text-decoration: none;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: #000;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

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

.hero-text p {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-subtitle {
    font-weight: 600;
    font-size: 18px;
    opacity: 1 !important;
}

.hero-image {
    flex: 0 0 400px;
}

.hero-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

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

.services h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    line-height: 1.2;
}

.services-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.service-card {
    flex: 1;
    text-align: center;
    max-width: 350px;
}

.service-image {
    margin-bottom: 30px;
}

.service-image img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
}

.service-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-card p {
    font-size: 14px;
    opacity: 0.8;
}

/* Packages Section */
.packages {
    padding: 80px 0;
    background-color: #111;
}

.packages h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

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

.package-card {
    background-color: #222;
    padding: 40px;
    border-radius: 8px;
}

.package-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.package-card p {
    font-size: 14px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.5;
}

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

.package-card li {
    font-size: 14px;
    margin-bottom: 8px;
    opacity: 0.8;
}

.package-price {
    font-size: 18px;
    font-weight: 700;
    color: #ff0000;
}

/* Why Section */
.why-section {
    padding: 80px 0;
    background-color: #000;
}

.why-section h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.why-content {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    margin-bottom: 60px;
}

.why-text {
    flex: 1;
}

.why-text p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

.why-image {
    flex: 0 0 300px;
}

.why-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.why-bottom {
    display: flex;
    align-items: flex-start;
    gap: 60px;
}

.why-bottom-image {
    flex: 0 0 300px;
}

.why-bottom-image img {
    width: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.why-bottom-text {
    flex: 1;
}

.why-bottom-text p {
    font-size: 16px;
    margin-bottom: 25px;
    opacity: 0.9;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background-color: #111;
}

.contact h2 {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
}

.contact > p {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
    opacity: 0.9;
}

.contact-subtitle {
    text-align: center;
    font-weight: 600;
    margin-bottom: 50px !important;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 4px;
    background-color: #333;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background-color: #444;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #fff;
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #f0f0f0;
}

/* Footer */
.footer {
    background-color: #ff0000;
    padding: 40px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 5px;
}

.footer-contact {
    margin-top: 20px;
}

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

.footer-links a {
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s ease;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .hero-image {
        flex: none;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .services-grid {
        flex-direction: column;
        align-items: center;
        gap: 50px;
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .package-card {
        padding: 30px 20px;
    }
    
    .why-content {
        flex-direction: column;
        gap: 40px;
    }
    
    .why-bottom {
        flex-direction: column-reverse;
        gap: 40px;
    }
    
    .why-image,
    .why-bottom-image {
        flex: none;
        max-width: 250px;
        margin: 0 auto;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        align-items: center;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-content p {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 50px 0;
    }
    
    .services,
    .packages,
    .why-section,
    .contact {
        padding: 50px 0;
    }
    
    .hero-text h1 {
        font-size: 24px;
    }
    
    .services h2,
    .packages h2,
    .why-section h2,
    .contact h2 {
        font-size: 24px;
    }
    
    .package-card {
        padding: 20px 15px;
    }
    
    .package-card h3 {
        font-size: 18px;
    }
}

.hero-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: fit-content;
    background: #ff0000;
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    padding: 20px;
    text-transform: uppercase;
}