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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.main-nav a:hover {
    color: #1a5490;
}

.ad-label {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
    color: #6c757d;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem;
}

.hero-content {
    max-width: 550px;
}

.hero-content h2 {
    font-size: 2.8rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-right {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-button {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #134170;
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.intro-right-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
    border-radius: 8px;
}

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

.intro-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-left-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.intro-left-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.benefits-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.benefit-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.benefit-card p {
    color: #555;
    line-height: 1.6;
}

.services-preview-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.services-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-left-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.services-left-content p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.services-list {
    list-style: none;
    margin-bottom: 2rem;
}

.services-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.services-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: bold;
}

.services-right-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
    border-radius: 8px;
}

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

.link-button {
    display: inline-block;
    color: #1a5490;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid #1a5490;
    transition: border-color 0.3s;
}

.link-button:hover {
    border-color: #134170;
}

.process-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.process-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a5490;
}

.process-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.process-step {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #e0e0e0;
    margin-bottom: 1rem;
}

.process-step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.process-step p {
    color: #555;
    line-height: 1.6;
}

.testimonials-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.testimonial-left {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

.testimonial-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-right {
    flex: 1;
    padding: 3rem 2rem;
}

.testimonial-right h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a5490;
}

.testimonial-box {
    background-color: #ffffff;
    padding: 1.8rem;
    margin-bottom: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #1a5490;
}

.testimonial-box p {
    font-style: italic;
    color: #555;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 600;
    color: #2c3e50;
}

.form-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.form-left-content {
    flex: 1;
}

.form-left-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.form-left-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}

.form-left-content img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e8ecef;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-button {
    width: 100%;
    background-color: #1a5490;
    color: #ffffff;
    padding: 1rem;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-button:hover {
    background-color: #134170;
}

.gallery-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.gallery-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a5490;
}

.gallery-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.gallery-item {
    flex: 1;
    min-width: 300px;
    background-color: #e8ecef;
    overflow: hidden;
    border-radius: 8px;
}

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

.gallery-item:hover img {
    transform: scale(1.05);
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    color: #b0b8c1;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #3a4e63;
    text-align: center;
    color: #b0b8c1;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.disclaimer {
    font-size: 0.85rem;
    color: #8a95a1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #1a5490;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #134170;
}

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

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

.page-hero {
    background: linear-gradient(135deg, #1a5490 0%, #2b6cb0 100%);
    padding: 5rem 2rem;
    text-align: center;
    color: #ffffff;
}

.page-hero-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-hero-content p {
    font-size: 1.2rem;
}

.about-intro-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.about-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.about-left p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.about-right {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
    border-radius: 8px;
}

.about-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.values-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.values-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a5490;
}

.values-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.value-card h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.value-card p {
    color: #555;
    line-height: 1.6;
}

.team-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.team-right-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
    border-radius: 8px;
}

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

.team-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.team-left-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.team-left-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.approach-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.approach-section h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a5490;
}

.approach-content {
    max-width: 1100px;
    margin: 0 auto;
}

.approach-item {
    margin-bottom: 2.5rem;
}

.approach-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a5490;
}

.approach-item p {
    color: #555;
    line-height: 1.6;
}

.cta-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cta-left-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem 2rem;
}

.cta-left-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.cta-left-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
}

.cta-right-image {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.services-intro {
    max-width: 1100px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-intro-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.services-intro-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.services-grid-section {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

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

.service-card {
    flex: 1;
    min-width: 380px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.service-image {
    background-color: #e8ecef;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 2rem;
}

.service-content h4 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.service-content p {
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid #e0e0e0;
}

.price-label {
    color: #6c757d;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

.pricing-info-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.pricing-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pricing-left h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.pricing-left p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.pricing-factors {
    list-style: none;
}

.pricing-factors li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.pricing-factors li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a5490;
    font-weight: bold;
    font-size: 1.5rem;
}

.pricing-right {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
    border-radius: 8px;
}

.pricing-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.additional-services {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.additional-services h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a5490;
}

.additional-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.additional-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.additional-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.additional-item p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.additional-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a5490;
}

.cta-services {
    background: linear-gradient(135deg, #1a5490 0%, #2b6cb0 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.cta-services h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 6rem auto;
    padding: 0 2rem;
    gap: 4rem;
}

.contact-left {
    flex: 1;
}

.contact-left h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a5490;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.contact-info-block p {
    color: #555;
    line-height: 1.8;
}

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

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

.contact-additional {
    background-color: #f8f9fa;
    padding: 5rem 2rem;
}

.contact-additional h3 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a5490;
}

.contact-methods {
    max-width: 1100px;
    margin: 0 auto;
}

.method-item {
    margin-bottom: 2.5rem;
}

.method-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a5490;
}

.method-item p {
    color: #555;
    line-height: 1.6;
}

.method-item a {
    color: #1a5490;
    text-decoration: underline;
}

.map-placeholder {
    background-color: #e8ecef;
    padding: 4rem 2rem;
    text-align: center;
}

.map-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.map-info p {
    font-size: 1.05rem;
    color: #555;
    max-width: 600px;
    margin: 0 auto;
}

.faq-section {
    max-width: 1100px;
    margin: 6rem auto;
    padding: 0 2rem;
}

.faq-section h3 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a5490;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.faq-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.faq-item p {
    color: #555;
    line-height: 1.6;
}

.thanks-section {
    max-width: 800px;
    margin: 6rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a5490;
}

.thanks-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    color: #2c3e50;
}

.legal-page {
    max-width: 900px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.legal-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a5490;
}

.legal-content h3 {
    font-size: 1.6rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #555;
}

.legal-content a {
    color: #1a5490;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        gap: 1rem;
    }

    .main-nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-split,
    .intro-split,
    .services-preview-split,
    .testimonials-split,
    .form-split,
    .about-intro-split,
    .team-split,
    .cta-split,
    .pricing-info-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right {
        min-height: 400px;
    }

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

    .benefits-container,
    .process-grid,
    .services-grid,
    .values-grid,
    .additional-grid {
        flex-direction: column;
    }

    .service-card {
        min-width: 100%;
    }
}