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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 0.85rem;
    color: #666;
    text-align: center;
}

header {
    background: #0f2942;
    color: white;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffd700;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

nav a:hover {
    color: #ffd700;
}

.split-section {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.split-left,
.split-right {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-left {
    background: #f5f8fa;
}

.split-right {
    background: white;
}

.split-section.reverse .split-left {
    background: white;
}

.split-section.reverse .split-right {
    background: #f5f8fa;
}

.image-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
    position: relative;
    overflow: hidden;
    background-color: #e8eef2;
}

.image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #0f2942;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 1.2rem;
    color: #0f2942;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #0f2942;
}

p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #333;
}

.cta-button {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 3rem 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-card h3 {
    color: #0f2942;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    color: #d4af37;
    font-weight: 700;
    margin: 1rem 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.form-section {
    background: #f5f8fa;
    padding: 4rem 0;
}

form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #0f2942;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: #d4af37;
}

footer {
    background: #0f2942;
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    color: #ffd700;
    margin-bottom: 1rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #ffd700;
}

.copyright {
    text-align: center;
    padding: 2rem 0 1rem;
    border-top: 1px solid #1a3a52;
    margin-top: 2rem;
    color: #999;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: white;
    padding: 1.5rem;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-button {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background: #d4af37;
    color: white;
}

.cookie-reject {
    background: #555;
    color: white;
}

.cookie-button:hover {
    opacity: 0.9;
}

.hero-section {
    min-height: 600px;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f2942 0%, #1a4568 100%);
    color: white;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.disclaimer {
    background: #fff9e6;
    border-left: 4px solid #d4af37;
    padding: 1.5rem;
    margin: 2rem 0;
    font-size: 0.95rem;
    color: #666;
}

.about-intro {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    height: 400px;
    background-color: #e8eef2;
}

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

.contact-split {
    display: flex;
    gap: 3rem;
    margin: 3rem 0;
}

.contact-info {
    flex: 1;
}

.contact-map {
    flex: 1;
    height: 400px;
    background: #e8eef2;
    border-radius: 8px;
}

.info-item {
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f5f8fa;
    border-radius: 4px;
}

.info-item h4 {
    color: #0f2942;
    margin-bottom: 0.5rem;
}

.thanks-container {
    text-align: center;
    max-width: 600px;
    margin: 4rem auto;
    padding: 3rem;
    background: #f5f8fa;
    border-radius: 8px;
}

.success-icon {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .split-section {
        flex-direction: column;
    }

    nav ul {
        flex-direction: column;
        gap: 1rem;
    }

    .services-grid {
        flex-direction: column;
    }

    .footer-content {
        flex-direction: column;
    }

    .about-intro,
    .contact-split {
        flex-direction: column;
    }

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