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

body {
    font-family: 'Comic Sans MS', cursive;
    color: #2c3e50;
    line-height: 1.6;
    padding-top: 70px;
}

header {
    background: #1abc9c;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.navbar-brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #ffffff !important;
    margin: 0 10px;
    transition: opacity 0.3s;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

.hero-section {
    position: relative;
    height: 500px;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    filter: brightness(0.7);
}

.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.principles-section, .basics-section, .approach-section, .planning-section {
    background: #ffffff;
}

.principles-section img, .basics-section img, .approach-section img, .planning-section img {
    border-radius: 8px;
    max-width: 100%;
}

.products-section {
    background: #ecf0f1;
}

.product-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
}

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

.product-info {
    padding: 1.5rem;
}

.product-info h3 {
    color: #1abc9c;
    margin-bottom: 0.5rem;
}

.limitations-section {
    background: #16a085;
    padding: 3rem 0;
    color: #ffffff;
}

.limitations-section h2 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.faq-section {
    background: #ecf0f1;
}

.faq-item {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #1abc9c;
}

.faq-item h3 {
    color: #1abc9c;
    margin-bottom: 0.5rem;
}

.final-cta-section {
    background: #1abc9c;
    color: #ffffff;
}

.contact-section {
    background: #ffffff;
}

.contact-section form {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.btn-primary {
    background: #1abc9c;
    border: none;
    padding: 0.75rem 2rem;
}

.btn-primary:hover {
    background: #16a085;
}

.footer {
    background: #2c3e50;
    color: #ffffff;
}

.footer a {
    color: #ffffff;
    text-decoration: none;
}

.footer a:hover {
    text-decoration: underline;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #34495e;
    color: #ffffff;
    padding: 1rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-buttons .btn {
    background: #1abc9c;
    color: #ffffff;
    border: none;
    padding: 0.5rem 1rem;
}

.thank-you-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
    z-index: 10000;
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 1.8rem;
    }
    
    .product-card {
        margin-bottom: 1.5rem;
    }
}
