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

:root {
    --primary: #2c3e50;
    --secondary: #34495e;
    --accent: #e74c3c;
    --text: #333;
    --light: #ecf0f1;
    --border: #ddd;
    --success: #27ae60;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.8;
    color: var(--text);
    background: #fff;
}

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

header {
    background: #fff;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 15px 0;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    font-family: 'Arial', sans-serif;
}

nav {
    display: flex;
    gap: 25px;
    align-items: center;
    flex-wrap: wrap;
}

nav a {
    color: var(--text);
    text-decoration: none;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--accent);
}

.ad-notice {
    font-size: 0.8rem;
    color: #888;
    padding: 4px 10px;
    background: #f9f9f9;
    border-radius: 3px;
    font-family: 'Arial', sans-serif;
}

.hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    background: var(--secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 720px;
    padding: 40px 20px;
    color: #fff;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    font-style: italic;
}

article {
    padding: 60px 0;
}

article h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    line-height: 1.3;
    color: var(--primary);
}

article h3 {
    font-size: 1.5rem;
    margin: 40px 0 20px;
    color: var(--secondary);
}

article p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.inline-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin: 40px 0;
    border-radius: 4px;
    background: var(--light);
}

.cta-inline {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    margin: 30px 0;
    font-family: 'Arial', sans-serif;
    font-size: 1rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.cta-inline:hover {
    background: #c0392b;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin: 50px 0;
}

.service-item {
    border-left: 4px solid var(--accent);
    padding-left: 30px;
}

.service-item h3 {
    margin-top: 0;
}

.service-price {
    font-size: 1.4rem;
    color: var(--accent);
    font-weight: bold;
    margin: 15px 0;
    font-family: 'Arial', sans-serif;
}

.service-item p {
    margin-bottom: 15px;
}

.service-select {
    display: inline-block;
    padding: 10px 24px;
    background: var(--primary);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
    transition: background 0.3s;
    border: none;
    cursor: pointer;
}

.service-select:hover {
    background: var(--secondary);
}

.form-section {
    background: var(--light);
    padding: 50px 30px;
    border-radius: 4px;
    margin: 60px 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 1rem;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.submit-btn {
    padding: 14px 40px;
    background: var(--success);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 1.05rem;
    cursor: pointer;
    font-family: 'Arial', sans-serif;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #229954;
}

.selected-service-display {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 20px;
    border-left: 4px solid var(--accent);
}

.selected-service-display strong {
    color: var(--accent);
}

.testimonial {
    background: #f9f9f9;
    padding: 30px;
    margin: 40px 0;
    border-left: 5px solid var(--accent);
    font-style: italic;
}

.testimonial-author {
    margin-top: 15px;
    font-weight: bold;
    font-style: normal;
    font-family: 'Arial', sans-serif;
    font-size: 0.95rem;
}

footer {
    background: var(--primary);
    color: #fff;
    padding: 50px 20px 30px;
    margin-top: 80px;
}

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

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

.footer-section h4 {
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 0.95rem;
    line-height: 1.8;
    display: block;
    font-family: 'Arial', sans-serif;
}

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

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    font-family: 'Arial', sans-serif;
}

.disclaimer {
    background: #fffbf0;
    border: 1px solid #e6d89e;
    padding: 25px;
    margin: 40px 0;
    border-radius: 4px;
    font-size: 0.95rem;
    line-height: 1.7;
}

.disclaimer strong {
    display: block;
    margin-bottom: 10px;
    color: var(--primary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(44, 62, 80, 0.97);
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
    font-family: 'Arial', sans-serif;
}

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

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

.cookie-text {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-family: 'Arial', sans-serif;
    transition: opacity 0.3s;
}

.cookie-accept {
    background: var(--success);
    color: #fff;
}

.cookie-reject {
    background: #7f8c8d;
    color: #fff;
}

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

.page-header {
    background: var(--primary);
    color: #fff;
    padding: 80px 20px 50px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.page-content {
    padding: 60px 20px;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 40px 0 20px;
    color: var(--primary);
}

.page-content h3 {
    font-size: 1.3rem;
    margin: 30px 0 15px;
    color: var(--secondary);
}

.page-content p {
    margin-bottom: 15px;
}

.page-content ul {
    margin: 20px 0 20px 30px;
}

.page-content li {
    margin-bottom: 10px;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 4px;
    margin: 40px 0;
}

.contact-item {
    margin-bottom: 25px;
}

.contact-item strong {
    display: block;
    margin-bottom: 8px;
    color: var(--primary);
    font-family: 'Arial', sans-serif;
}

.thanks-message {
    text-align: center;
    padding: 80px 20px;
}

.thanks-message h1 {
    font-size: 2.5rem;
    color: var(--success);
    margin-bottom: 20px;
}

.thanks-icon {
    font-size: 4rem;
    margin-bottom: 30px;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    article h2 {
        font-size: 1.6rem;
    }

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

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

    nav {
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}
