* {
    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.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: relative;
    z-index: 100;
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 99;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 35px;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-size: 15px;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.hero-magazine {
    background-color: #ffffff;
    padding: 60px 40px;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-text-col {
    flex: 0 0 45%;
}

.hero-text-col h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-lead {
    font-size: 20px;
    color: #555;
    line-height: 1.6;
}

.hero-image-col {
    flex: 1;
    background-color: #e8e8e8;
}

.hero-image-col img {
    width: 100%;
    height: auto;
    display: block;
}

.intro-magazine {
    background-color: #f4f4f4;
    padding: 80px 40px;
}

.magazine-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.narrow-column {
    flex: 0 0 40%;
}

.narrow-column h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.narrow-column p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
}

.wide-column {
    flex: 1;
    background-color: #ffffff;
    padding: 30px;
}

.wide-column img {
    width: 100%;
    height: auto;
    margin-bottom: 15px;
}

.caption {
    font-size: 14px;
    color: #777;
    font-style: italic;
}

.services-overview {
    padding: 100px 40px;
    background-color: #ffffff;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-magazine-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    background-color: #fafafa;
    border: 1px solid #e0e0e0;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 280px;
    overflow: hidden;
    background-color: #e8e8e8;
}

.service-image img {
    width: 100%;
    height: 100%;
}

.service-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    flex: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin: 15px 0;
}

.btn-select {
    padding: 14px 30px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    width: 100%;
}

.btn-select:hover {
    background-color: #2980b9;
}

.form-section {
    background-color: #ecf0f1;
    padding: 90px 40px;
}

.form-container-magazine {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 50px;
    border: 1px solid #d0d0d0;
}

.form-text {
    margin-bottom: 35px;
}

.form-text h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.form-text p {
    font-size: 17px;
    color: #555;
}

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

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

.form-group label {
    font-size: 15px;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.form-group input,
.form-group select {
    padding: 14px;
    border: 1px solid #ccc;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    padding: 16px 40px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.why-us {
    background-color: #ffffff;
    padding: 100px 40px;
}

.magazine-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-image {
    flex: 0 0 50%;
    background-color: #e8e8e8;
}

.split-image img {
    width: 100%;
    height: auto;
    display: block;
}

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.split-content p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

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

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

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

.footer-col a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.footer-col p {
    color: #bdc3c7;
    font-size: 15px;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 25px;
    background-color: rgba(255, 255, 255, 0.05);
    border-left: 3px solid #3498db;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #bdc3c7;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #95a5a6;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    padding: 25px 40px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
}

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

.cookie-content p {
    color: #ecf0f1;
    font-size: 15px;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.page-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 60px 40px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 700;
}

.header-subtitle {
    font-size: 20px;
    margin-top: 15px;
    color: #ecf0f1;
}

.about-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

.mission-section {
    padding: 80px 40px;
    background-color: #f9f9f9;
}

.centered-content {
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.centered-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.lead-text {
    font-size: 19px;
    color: #555;
    line-height: 1.7;
}

.mission-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.mission-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-left: 4px solid #3498db;
}

.mission-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.mission-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.team-approach {
    padding: 80px 40px;
    background-color: #ffffff;
}

.approach-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.approach-text p {
    font-size: 17px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
}

.approach-image {
    flex: 0 0 45%;
    background-color: #e8e8e8;
}

.approach-image img {
    width: 100%;
    height: auto;
    display: block;
}

.values-section {
    padding: 80px 40px;
    background-color: #f4f4f4;
}

.values-section h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.values-list {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 0 0 calc(50% - 20px);
    background-color: #ffffff;
    padding: 35px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #3498db;
}

.value-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-detail {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.service-detail.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 0 0 45%;
    background-color: #e8e8e8;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    display: block;
}

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.service-features {
    margin: 20px 0;
}

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

.service-features li {
    font-size: 15px;
    color: #444;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #3498db;
    margin: 20px 0;
}

.btn-primary {
    padding: 14px 35px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary:hover {
    background-color: #2980b9;
}

.cta-section {
    background-color: #3498db;
    color: #ffffff;
    text-align: center;
    padding: 70px 40px;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-secondary {
    padding: 16px 40px;
    background-color: #ffffff;
    color: #3498db;
    border: none;
    font-size: 17px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
    text-decoration: none;
    display: inline-block;
}

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

.contact-info-section {
    padding: 60px 40px;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-details {
    flex: 0 0 50%;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3498db;
}

.contact-item p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-item .note {
    font-size: 14px;
    color: #777;
    margin-top: 10px;
    font-style: italic;
}

.contact-map {
    flex: 1;
    background-color: #e8e8e8;
}

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

.additional-info {
    background-color: #f9f9f9;
    padding: 60px 40px;
}

.info-columns {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.info-col {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
}

.info-col h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.info-col p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 12px;
}

.thanks-section {
    padding: 100px 40px;
    background-color: #ffffff;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.thanks-details {
    margin: 30px 0;
}

.selected-service {
    font-size: 18px;
    color: #333;
    padding: 20px;
    background-color: #ecf0f1;
    border-left: 4px solid #3498db;
}

.selected-service strong {
    color: #3498db;
}

.thanks-container p {
    font-size: 16px;
    color: #666;
    margin-bottom: 40px;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.legal-page {
    padding: 60px 40px;
    background-color: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-container ul,
.legal-container ol {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-container li {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f4f4f4;
    font-weight: 600;
    color: #333;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 1024px) {
    .hero-grid,
    .magazine-layout,
    .magazine-split,
    .approach-grid,
    .contact-grid {
        flex-direction: column;
    }

    .hero-text-col,
    .narrow-column,
    .split-image,
    .approach-text,
    .approach-image,
    .contact-details {
        flex: 1 1 100%;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
    }

    .service-detail-image {
        flex: 1 1 100%;
    }

    .mission-columns,
    .values-list,
    .info-columns {
        flex-direction: column;
    }

    .mission-item,
    .value-item,
    .info-col {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

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

    .section-title,
    .page-header h1 {
        font-size: 32px;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}