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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

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

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

.hidden {
    display: none !important;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

.cookie-content a {
    color: #4a90e2;
    text-decoration: underline;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #4a90e2;
    color: white;
}

.btn-primary:hover {
    background: #357abd;
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;
}

.btn-secondary:hover {
    background: rgba(255,255,255,0.1);
}

/* Header */
.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.main-nav {
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a90e2;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
}

/* Hero Section */
.hero-section {
    position: relative;
    margin-bottom: 0;
}

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #2c3e50;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.6));
}

.hero-overlay h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    color: #ecf0f1;
    font-weight: 400;
}

/* Intro Section */
.intro-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.intro-section h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.intro-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: #ffffff;
}

.values-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
}

.value-icon {
    margin-bottom: 24px;
    overflow: hidden;
    border-radius: 8px;
    background-color: #ecf0f1;
}

.value-icon img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon img {
    transform: scale(1.05);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: #1a1a1a;
    color: #ffffff;
}

.section-header-left {
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 700;
}

.section-header-left p {
    font-size: 20px;
    color: #bdc3c7;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.service-item {
    background: #2c2c2c;
    padding: 40px;
    transition: all 0.3s ease;
}

.service-item:hover {
    background: #333333;
    transform: translateX(10px);
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #ffffff;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    color: #bdc3c7;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 32px;
    color: #4a90e2;
    font-weight: 700;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: #ecf0f1;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.trust-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.trust-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #bdc3c7;
}

.trust-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Form Section */
.form-section {
    padding: 100px 0;
    background: #ffffff;
}

.form-wrapper {
    background: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
}

.form-wrapper h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.form-intro {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    background: #ffffff;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

.btn-submit {
    padding: 16px 32px;
    background: #4a90e2;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #357abd;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Final Section */
.final-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    text-align: center;
}

.final-content h2 {
    font-size: 42px;
    margin-bottom: 24px;
    font-weight: 700;
}

.final-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
}

.btn-large {
    display: inline-block;
    padding: 18px 48px;
    background: #ffffff;
    color: #667eea;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Footer */
.main-footer {
    background: #1a1a1a;
    color: #bdc3c7;
    padding: 60px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #4a90e2;
}

.footer-bottom {
    border-top: 1px solid #333333;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    margin-bottom: 20px;
    line-height: 1.6;
    font-style: italic;
}

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

/* Thanks Page Specific */
.thanks-hero {
    padding: 120px 0;
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: #ffffff;
    text-align: center;
}

.thanks-hero h1 {
    font-size: 56px;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-hero p {
    font-size: 24px;
    margin-bottom: 40px;
}

.thanks-content {
    padding: 80px 0;
    text-align: center;
}

.thanks-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

/* Legal Pages */
.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 16px;
    color: #34495e;
    font-weight: 600;
}

.legal-page p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #34495e;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-page ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #34495e;
    line-height: 1.6;
}

/* About & Services Pages */
.page-hero {
    padding: 100px 0;
    background: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.page-hero p {
    font-size: 22px;
    opacity: 0.9;
}

.content-section {
    padding: 80px 0;
}

.content-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.content-section p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
    line-height: 1.8;
}

.service-details {
    display: flex;
    flex-direction: column;
    gap: 60px;
    padding: 80px 0;
}

.service-block {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.service-block:nth-child(even) {
    flex-direction: row-reverse;
}

.service-info {
    flex: 1;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.service-info .price-tag {
    font-size: 36px;
    color: #4a90e2;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-info p {
    font-size: 18px;
    color: #34495e;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-info ul {
    list-style: none;
    padding-left: 0;
}

.service-info ul li {
    font-size: 16px;
    color: #34495e;
    margin-bottom: 12px;
    padding-left: 24px;
    position: relative;
}

.service-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #11998e;
    font-weight: 700;
}

.service-visual {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ecf0f1;
}

.service-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Contact Page */
.contact-info {
    padding: 80px 0;
    background: #f8f9fa;
}

.contact-grid {
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.6;
}

.contact-map {
    flex: 1;
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 968px) {
    .hero-overlay h1 {
        font-size: 42px;
    }

    .hero-subtitle {
        font-size: 20px;
    }

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

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

    .service-block,
    .service-block:nth-child(even) {
        flex-direction: column;
    }

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

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 640px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

    .form-wrapper {
        padding: 30px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}