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

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c6ba8;
    --accent-color: #e67e22;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

.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 {
    margin: 0;
    flex: 1;
    min-width: 300px;
}

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background-color: #d35400;
    transform: translateY(-2px);
}

.btn-reject {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

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

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

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

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

.nav-links a:hover {
    color: var(--secondary-color);
}

.ad-disclosure {
    font-size: 13px;
    color: var(--text-light);
    padding: 6px 12px;
    background-color: var(--bg-light);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    gap: 60px;
    align-items: center;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.hero-left h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    font-weight: 800;
}

.hero-left p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.hero-right {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.intro-split {
    display: flex;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.intro-split.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.intro-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
    line-height: 1.3;
}

.intro-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.values-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
    margin: 80px 0;
}

.values-header {
    max-width: 1400px;
    margin: 0 auto 50px;
    text-align: center;
}

.values-header h2 {
    font-size: 40px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

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

.services-intro {
    display: flex;
    gap: 60px;
    align-items: center;
}

.services-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-text h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

.services-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.services-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.link-arrow {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.link-arrow:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: flex-start;
}

.approach-left {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.approach-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.approach-right h2 {
    font-size: 36px;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-steps {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 60px;
}

.step-content h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.step-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.testimonials h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial p {
    font-size: 17px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 15px;
    color: var(--text-light);
    font-weight: 600;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 40px;
    margin: 100px 0;
}

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

.cta-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
}

.cta-content h2 {
    font-size: 42px;
    color: white;
    font-weight: 700;
}

.cta-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.main-footer {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 40px 20px;
}

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

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

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

.footer-section p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
}

.page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 80px 40px;
    text-align: center;
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

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

.service-item {
    display: flex;
    gap: 60px;
    margin-bottom: 100px;
    align-items: center;
}

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

.service-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.service-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.service-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.service-content p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-features li {
    padding-left: 28px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-top: 12px;
}

.price {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 700;
}

.select-service {
    padding: 12px 28px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

.service-form-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
    margin-top: 80px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

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

.form-container > p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

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

.selected-service-display {
    padding: 16px 20px;
    background-color: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    font-weight: 600;
    color: var(--primary-color);
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.submit-btn {
    padding: 16px 36px;
    background-color: var(--accent-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.about-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 40px;
    text-align: center;
    color: white;
}

.about-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 22px;
    opacity: 0.95;
}

.about-story-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    font-weight: 700;
}

.story-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.story-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.mission-split {
    display: flex;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 80px;
    align-items: center;
}

.mission-split.reverse {
    flex-direction: row-reverse;
}

.mission-image {
    flex: 1;
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.mission-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mission-text h2 {
    font-size: 38px;
    color: var(--primary-color);
    font-weight: 700;
}

.mission-text p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.team-section {
    background-color: var(--bg-light);
    padding: 80px 40px;
    margin: 100px 0;
}

.team-section h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.expertise-grid {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 30px;
    flex-wrap: wrap;
}

.expertise-card {
    flex: 1;
    min-width: 260px;
    background-color: var(--bg-white);
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.expertise-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 600;
}

.expertise-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.values-detailed {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.values-intro h2 {
    text-align: center;
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 60px;
    font-weight: 700;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.value-item {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.value-icon {
    font-size: 48px;
    font-weight: 700;
    color: var(--accent-color);
    min-width: 80px;
}

.value-description h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.value-description p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.approach-detail {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
}

.approach-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
}

.approach-content h2 {
    font-size: 38px;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-content p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.8;
}

.approach-image-grid img {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
}

.contact-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 100px 40px;
    text-align: center;
    color: white;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
    font-weight: 800;
}

.contact-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.contact-main {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 50px;
    font-weight: 700;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-block p {
    font-size: 18px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 52px;
    color: white;
}

.thanks-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    font-weight: 700;
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    line-height: 1.7;
}

.service-confirmation {
    padding: 20px 30px;
    background-color: var(--bg-light);
    border-radius: 6px;
    border-left: 4px solid var(--accent-color);
    font-size: 18px;
    color: var(--primary-color);
    font-weight: 600;
}

.thanks-next {
    text-align: left;
    margin-top: 20px;
}

.thanks-next h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin-bottom: 20px;
    font-weight: 600;
}

.thanks-next ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.thanks-next ul li {
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.6;
}

.thanks-next ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.back-home {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.back-home:hover {
    background-color: var(--primary-color);
    transform: translateY(-2px);
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.legal-content h1 {
    font-size: 44px;
    color: var(--primary-color);
    margin-bottom: 40px;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 22px;
    color: var(--text-dark);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 18px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-content a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent-color);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .services-intro,
    .approach-split,
    .service-item,
    .about-story-split,
    .mission-split {
        flex-direction: column;
        gap: 40px;
    }

    .service-item.reverse,
    .intro-split.reverse,
    .mission-split.reverse {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .hero-left h1,
    .about-hero-content h1,
    .contact-hero h1 {
        font-size: 36px;
    }

    .value-item {
        flex-direction: column;
        gap: 20px;
    }

    .form-container {
        padding: 30px;
    }
}