* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

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

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

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

.main-nav a {
    color: #4a4a4a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #0066cc;
}

.ad-disclosure {
    font-size: 12px;
    color: #666666;
    padding: 6px 12px;
    border: 1px solid #cccccc;
    border-radius: 4px;
    background-color: #f9f9f9;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-text {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f8f9fa;
}

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

.hero-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #4a4a4a;
}

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

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #0052a3;
}

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #0066cc;
    text-decoration: none;
    border-radius: 6px;
    border: 2px solid #0066cc;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #0066cc;
    color: #ffffff;
}

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

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 700;
}

.intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.service-card-left,
.service-card-right {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-card-right {
    flex-direction: row-reverse;
}

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

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

.service-details {
    flex: 1;
    padding: 30px 0;
}

.service-details h3 {
    font-size: 28px;
    margin-bottom: 18px;
    font-weight: 700;
}

.service-details p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #0066cc;
    margin: 20px 0;
}

.link-arrow {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: color 0.3s ease;
}

.link-arrow:hover {
    color: #0052a3;
}

.trust-indicators {
    background-color: #0a1628;
    color: #ffffff;
    padding: 80px 40px;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
}

.trust-item h4 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #cccccc;
}

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

.approach-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.approach-visual {
    flex: 1;
    background-color: #e8e8e8;
}

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

.contact-prompt {
    background-color: #f8f9fa;
    padding: 100px 40px;
    text-align: center;
}

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

.contact-prompt-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

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

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-column h5 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    color: #cccccc;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #cccccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid #333333;
    text-align: center;
}

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

.page-header {
    max-width: 1000px;
    margin: 60px auto 80px;
    padding: 0 40px;
    text-align: center;
}

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

.page-header p {
    font-size: 20px;
    color: #4a4a4a;
}

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

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

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    font-size: 16px;
    padding: 10px 0 10px 28px;
    position: relative;
    color: #4a4a4a;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

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

.service-pricing .price {
    font-size: 36px;
    font-weight: 700;
    color: #0066cc;
}

.select-service {
    padding: 14px 28px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #0052a3;
}

.service-detail-image {
    flex: 1;
    background-color: #e8e8e8;
}

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

.service-form-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
    text-align: center;
}

.form-container > p {
    font-size: 17px;
    color: #4a4a4a;
    text-align: center;
    margin-bottom: 40px;
}

.service-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #cccccc;
    border-radius: 6px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.about-hero {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.about-hero-content p {
    font-size: 20px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.story-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 700;
}

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

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

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

.methodology-section {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.methodology-content {
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-content h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

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

.method-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
}

.method-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

.method-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

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

.expertise-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

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

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

.expertise-text {
    flex: 1;
}

.expertise-text h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.values-section {
    background-color: #0a1628;
    color: #ffffff;
    padding: 80px 40px;
}

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

.values-container h2 {
    font-size: 42px;
    margin-bottom: 50px;
    font-weight: 700;
    text-align: center;
}

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

.value-item h4 {
    font-size: 24px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

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

.team-content h2 {
    font-size: 36px;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.cta-about {
    background-color: #f8f9fa;
    padding: 100px 40px;
    text-align: center;
}

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

.cta-about-content p {
    font-size: 18px;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.contact-hero {
    background-color: #f8f9fa;
    padding: 80px 40px;
    text-align: center;
}

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

.contact-hero p {
    font-size: 20px;
    color: #4a4a4a;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-details h2 {
    font-size: 36px;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-info-block {
    margin-bottom: 36px;
}

.contact-info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-info-block p {
    font-size: 17px;
    color: #4a4a4a;
    line-height: 1.7;
}

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

.contact-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.contact-additional-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
    font-weight: 700;
}

.contact-additional-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-section {
    padding: 120px 40px;
}

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

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

.thanks-container > p {
    font-size: 20px;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.thanks-details p:last-child {
    margin-bottom: 0;
}

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

.legal-page {
    padding: 60px 40px;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 12px;
    font-weight: 700;
}

.last-updated {
    font-size: 15px;
    color: #666666;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    font-weight: 700;
}

.legal-container h3 {
    font-size: 22px;
    margin: 28px 0 16px;
    font-weight: 700;
}

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

.legal-container ul {
    margin: 16px 0 24px 24px;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .service-card-left,
    .service-card-right,
    .approach-split,
    .story-split,
    .expertise-split,
    .service-detailed,
    .contact-layout {
        flex-direction: column;
    }

    .service-card-right {
        flex-direction: column;
    }

    .trust-grid,
    .footer-container {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

    .hero-text h1,
    .page-header h1,
    .about-hero-content h1 {
        font-size: 36px;
    }

    .thanks-actions {
        flex-direction: column;
        align-items: stretch;
    }

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