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

:root {
    --primary-color: #1a5f7a;
    --secondary-color: #57a6c9;
    --accent-color: #f4a261;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #dee2e6;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

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

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

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

header {
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    text-decoration: none;
}

.ad-disclosure {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 10px;
    background-color: var(--bg-light);
    border-radius: 3px;
    margin: 0 15px;
}

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

nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

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

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: 0.3s;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    padding: 40px;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.btn:hover {
    background-color: #e89451;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: #145166;
}

.magazine-layout {
    display: flex;
    gap: 40px;
    margin: 80px auto;
    flex-wrap: wrap;
}

.main-column {
    flex: 2;
    min-width: 300px;
}

.side-column {
    flex: 1;
    min-width: 280px;
}

.section {
    padding: 80px 0;
}

.section-alt {
    background-color: var(--bg-light);
}

.section-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.multi-column-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.column-third {
    flex: 1;
    min-width: 280px;
}

.column-half {
    flex: 1;
    min-width: 320px;
}

.service-card {
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.service-card p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: bold;
    color: var(--accent-color);
    margin: 20px 0;
}

.image-wrapper {
    width: 100%;
    height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin: 25px 0;
}

.image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.feature-box {
    background-color: white;
    padding: 30px;
    border-left: 4px solid var(--accent-color);
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.feature-box h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.testimonial {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    margin: 20px 0;
    font-style: italic;
}

.testimonial-author {
    margin-top: 15px;
    font-weight: 600;
    color: var(--primary-color);
    font-style: normal;
}

.form-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    color: white;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: white;
    padding: 45px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.2);
}

.form-container h2 {
    color: var(--primary-color);
    margin-bottom: 25px;
    font-size: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 90;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.grid-layout {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    margin: 40px 0;
}

.grid-item {
    flex: 1;
    min-width: 250px;
    background-color: white;
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.highlight-section {
    background-color: var(--accent-color);
    color: white;
    padding: 50px 40px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: center;
}

.highlight-section h3 {
    font-size: 28px;
    margin-bottom: 20px;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    gap: 30px;
    flex-wrap: wrap;
    padding: 60px 0;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--primary-color);
    display: block;
}

.stat-label {
    font-size: 16px;
    color: var(--text-light);
    margin-top: 10px;
}

footer {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--accent-color);
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #444;
    color: #888;
    font-size: 14px;
}

.disclaimer {
    background-color: #fff3cd;
    border: 1px solid #ffc107;
    padding: 20px;
    border-radius: 5px;
    margin: 30px 0;
    font-size: 14px;
    color: #856404;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.98);
    color: white;
    padding: 25px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -2px 15px rgba(0,0,0,0.3);
}

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

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

.cookie-text {
    flex: 1;
    min-width: 250px;
}

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

.cookie-buttons button {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-accept {
    background-color: var(--accent-color);
    color: white;
}

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

.cookie-accept:hover {
    background-color: #e89451;
}

.cookie-reject:hover {
    background-color: rgba(255,255,255,0.1);
}

.contact-info {
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-info h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 12px;
    line-height: 1.8;
}

.content-section {
    padding: 40px 0;
    line-height: 1.8;
}

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

.content-section h3 {
    font-size: 24px;
    margin: 30px 0 15px;
    color: var(--primary-color);
}

.content-section p {
    margin-bottom: 20px;
}

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

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

.asymmetric-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    margin: 50px 0;
}

.asymmetric-left {
    flex: 1.5;
    min-width: 350px;
}

.asymmetric-right {
    flex: 1;
    min-width: 300px;
}

.offset-box {
    margin-left: 40px;
    margin-top: -60px;
    background-color: white;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
}

@media (max-width: 968px) {
    .header-wrapper {
        flex-direction: column;
        align-items: flex-start;
    }

    nav {
        display: none;
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-top: 15px;
    }

    nav.active {
        display: flex;
    }

    .hamburger {
        display: flex;
        position: absolute;
        top: 20px;
        right: 20px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .magazine-layout {
        flex-direction: column;
    }

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

    .offset-box {
        margin-left: 0;
        margin-top: 0;
    }
}

@media (max-width: 640px) {
    .hero-section {
        height: 500px;
    }

    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 16px;
    }

    .section-title {
        font-size: 28px;
    }

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

    .stats-section {
        flex-direction: column;
    }

    .sticky-cta {
        bottom: 10px;
        right: 10px;
    }
}
