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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Manrope', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(74, 63, 84, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 20px;
    z-index: 10000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 8px 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: 'Manrope', sans-serif;
    font-weight: 500;
    font-size: 14px;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background: #45a049;
}

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

.cookie-btn.decline:hover {
    background: white;
    color: #4a3f54;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo a {
    font-size: 28px;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.navigation {
    display: flex;
    gap: 40px;
}

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

.nav-link:hover {
    color: #333;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

/* Hero Section */
.hero {
    padding: 120px 0 80px;
    background: #f8f9fa;
}

.hero .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-text-content {
    max-width: 900px;
    margin-bottom: 40px;
}

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

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

.cta-button {
    background: #333;
    color: white;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
    font-family: 'Manrope', sans-serif;
    border-radius: 4px;
    text-decoration: none;
}

.cta-button:hover {
    background: #555;
    transform: translateY(-2px);
}

.hero-image {
    width: 100%;
    max-width: 900px;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 8px;
}

/* Expectations Section */
.expectations {
    padding: 100px 0;
    background: #4a3f54;
    color: white;
}

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

.section-intro {
    text-align: center;
    font-size: 16px;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.7;
}

.expectations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.expectation-card {
    text-align: center;
    padding: 0 20px;
}

.expectation-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.expectation-card p {
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.9;
}

.cta-section {
    text-align: center;
}

/* Tips & Advice Section */
.tips-advice {
    padding: 100px 0;
    background: white;
}

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

.tips-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #333;
    margin-bottom: 30px;
}

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

.tips-image img {
    width: 100%;
 
    object-fit: cover;
    border-radius: 8px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #4a3f54;
    color: white;
}

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

.contact > p {
    text-align: center;
    font-size: 16px;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.7;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form textarea {
    padding: 15px 20px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-family: 'Manrope', sans-serif;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
}

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

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.15);
}

.submit-button {
    background: white;
    color: #4a3f54;
    border: none;
    padding: 15px 30px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Manrope', sans-serif;
    margin-top: 10px;
}

.submit-button:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

/* Footer */
.footer {
    background: #4a3f54;
    color: white;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-link {
    color: white;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #ccc;
}

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

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #ccc;
}

.copyright {
    text-align: center;
}

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .navigation {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero-text-content h1 {
        font-size: 32px;
    }
    
    .hero-image img {
        height: 300px;
    }
    
    .tips-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .expectations h2,
    .tips-text h2,
    .contact h2 {
        font-size: 28px;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .footer-links {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-text-content h1 {
        font-size: 28px;
    }
    
    .hero-image img {
        height: 250px;
    }
    
    .expectations,
    .tips-advice,
    .contact {
        padding: 60px 0;
    }
    
    .expectations-grid {
        grid-template-columns: 1fr;
    }
    
    .expectation-card {
        padding: 0;
    }
}