* {
    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;
}

.ad-disclosure {
    background-color: #f0f0f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #ddd;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
}

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

.nav-links a {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #333;
}

.hero-magazine {
    background-color: #f8f9fa;
    padding: 70px 30px;
}

.hero-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.hero-main {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 50px;
}

.hero-text-block {
    flex: 1;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #0d1117;
    font-weight: 800;
}

.hero-intro {
    font-size: 20px;
    color: #586069;
    margin-bottom: 35px;
    line-height: 1.7;
}

.hero-image-block {
    flex: 1;
    background-color: #e9ecef;
}

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

.hero-secondary {
    display: flex;
    justify-content: space-around;
    gap: 30px;
}

.stat-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    flex: 1;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.stat-number {
    display: block;
    font-size: 42px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 16px;
    color: #666;
}

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

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

.intro-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #0d1117;
    font-weight: 700;
}

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

.features-magazine {
    padding: 90px 30px;
    background-color: #f8f9fa;
}

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

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

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

.feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
}

.feature-card.large-card {
    flex: 1 1 calc(60% - 15px);
}

.card-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background-color: #e9ecef;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.card-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #0d1117;
    font-weight: 700;
}

.card-content p {
    font-size: 16px;
    color: #586069;
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 24px;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

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

.btn-select-service:hover {
    background-color: #218838;
}

.value-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

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

.value-text {
    flex: 1;
}

.value-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #0d1117;
    font-weight: 700;
}

.value-text p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.value-visual {
    flex: 1;
    background-color: #e9ecef;
}

.value-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.link-underlined {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid #0066cc;
    transition: color 0.3s;
}

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

.testimonials-section {
    padding: 90px 30px;
    background-color: #f8f9fa;
}

.testimonials-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    text-align: center;
    color: #0d1117;
    font-weight: 700;
}

.testimonials-list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}

.testimonial-item {
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid #0066cc;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.testimonial-item p {
    font-size: 18px;
    font-style: italic;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.7;
}

.testimonial-item cite {
    font-size: 15px;
    color: #666;
    font-style: normal;
    font-weight: 600;
}

.methodology-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.methodology-header {
    text-align: center;
    margin-bottom: 60px;
}

.methodology-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #0d1117;
    font-weight: 700;
}

.methodology-header p {
    font-size: 19px;
    color: #586069;
}

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

.method-card {
    flex: 1;
    padding: 35px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.method-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0d1117;
    font-weight: 700;
}

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

.cta-section {
    padding: 100px 30px;
    background-color: #0066cc;
    text-align: center;
}

.cta-section h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #ffffff;
    font-weight: 700;
}

.cta-section p {
    font-size: 18px;
    color: #e6f2ff;
    margin-bottom: 35px;
}

.cta-secondary {
    display: inline-block;
    background-color: #ffffff;
    color: #0066cc;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #e6f2ff;
}

.disclaimer-section {
    padding: 60px 30px;
    background-color: #f8f9fa;
}

.disclaimer-text {
    font-size: 14px;
    color: #586069;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: #0d1117;
    color: #c9d1d9;
    padding: 60px 30px 30px;
}

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

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

.footer-column p {
    font-size: 15px;
    color: #8b949e;
    margin-bottom: 10px;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #30363d;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0d1117;
    color: #c9d1d9;
    padding: 25px 30px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-content a {
    color: #58a6ff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: #28a745;
    color: #ffffff;
}

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

.btn-reject {
    background-color: #6c757d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #5a6268;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    z-index: 2000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background-color: #ffffff;
    border-radius: 12px;
    padding: 40px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    background: none;
    border: none;
    cursor: pointer;
    color: #666;
    line-height: 1;
}

.modal-close:hover {
    color: #333;
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #0d1117;
    font-weight: 700;
}

.selected-service-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service-info p {
    margin-bottom: 8px;
    font-size: 16px;
}

.service-name {
    font-weight: 700;
    color: #0d1117;
    font-size: 18px;
}

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

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

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

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

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

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

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

@media (max-width: 1024px) {
    .hero-main {
        flex-direction: column;
    }

    .hero-text-block h1 {
        font-size: 42px;
    }

    .container-split {
        flex-direction: column;
    }

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

    .feature-card,
    .feature-card.large-card {
        flex: 1 1 100%;
    }
}

.page-header {
    background-color: #0066cc;
    padding: 80px 30px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 700;
}

.header-subtitle {
    font-size: 20px;
    color: #e6f2ff;
}

.about-intro {
    padding: 90px 30px;
    background-color: #ffffff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #0d1117;
    font-weight: 700;
}

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

.about-image {
    flex: 1;
    background-color: #e9ecef;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
}

.values-section {
    padding: 90px 30px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 50px;
    text-align: center;
    color: #0d1117;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #0d1117;
    font-weight: 700;
}

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

.team-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 42px;
    margin-bottom: 60px;
    text-align: center;
    color: #0d1117;
    font-weight: 700;
}

.team-grid {
    display: flex;
    gap: 40px;
    justify-content: center;
}

.team-member {
    flex: 1;
    max-width: 350px;
    text-align: center;
}

.member-photo {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 20px;
    background-color: #e9ecef;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.team-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #0d1117;
    font-weight: 700;
}

.member-role {
    font-size: 16px;
    color: #0066cc;
    font-weight: 600;
    margin-bottom: 12px;
}

.member-bio {
    font-size: 15px;
    color: #586069;
    line-height: 1.7;
}

.commitment-section {
    padding: 90px 30px;
    background-color: #f8f9fa;
}

.commitment-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #0d1117;
    font-weight: 700;
}

.commitment-section p {
    font-size: 17px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-detail {
    padding: 90px 30px;
    background-color: #ffffff;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-row {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.service-row h3 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #0d1117;
    font-weight: 700;
}

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

.contact-section {
    padding: 90px 30px;
    background-color: #ffffff;
}

.contact-info {
    display: flex;
    gap: 60px;
    margin-bottom: 60px;
}

.info-block {
    flex: 1;
}

.info-block h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #0d1117;
    font-weight: 700;
}

.info-block p {
    font-size: 17px;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-additional {
    margin-top: 60px;
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #0d1117;
    font-weight: 700;
}

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

.legal-page {
    padding: 90px 30px;
    background-color: #ffffff;
}

.legal-page h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #0d1117;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #0d1117;
    font-weight: 700;
}

.legal-page p {
    font-size: 16px;
    color: #333;
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-page {
    padding: 120px 30px;
    background-color: #f8f9fa;
    text-align: center;
    min-height: 60vh;
}

.thanks-page h1 {
    font-size: 48px;
    margin-bottom: 25px;
    color: #28a745;
    font-weight: 700;
}

.thanks-page p {
    font-size: 19px;
    color: #333;
    margin-bottom: 20px;
    line-height: 1.7;
}

.thanks-highlight {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    margin: 40px auto;
    max-width: 600px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

@media (max-width: 1024px) {
    .about-split {
        flex-direction: column;
    }

    .team-grid {
        flex-direction: column;
        align-items: center;
    }

    .contact-info {
        flex-direction: column;
    }

    .value-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #ffffff;
        padding: 20px 30px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-text-block h1 {
        font-size: 34px;
    }

    .hero-secondary {
        flex-direction: column;
    }

    .footer-container {
        flex-direction: column;
    }

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

    .page-header h1 {
        font-size: 36px;
    }
}