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

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5aa0;
}

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

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

.main-nav a:hover {
    color: #2c5aa0;
}

.ad-notice {
    background-color: #fff3cd;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    color: #856404;
    border: 1px solid #ffeaa7;
}

.hero-section {
    margin-top: -1px;
}

.hero-image {
    height: 540px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.85) 0%, rgba(44, 62, 80, 0.75) 100%);
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 700px;
    color: #ffffff;
}

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

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #2c5aa0;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.intro-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.intro-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.intro-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5aa0;
}

.intro-card p {
    color: #5a6c7d;
    font-size: 15px;
}

.story-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.story-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.story-text {
    flex: 1;
    min-width: 300px;
}

.story-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.story-text p {
    margin-bottom: 16px;
    font-size: 17px;
    color: #5a6c7d;
}

.story-image {
    flex: 1;
    min-width: 300px;
}

.story-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.citation {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.citation:hover {
    text-decoration: underline;
}

.services-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.section-header p {
    font-size: 18px;
    color: #5a6c7d;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    width: calc(33.333% - 22px);
    min-width: 300px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

.service-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #e0e7ef;
}

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

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.service-features {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.service-features span {
    background-color: #e8f2ff;
    color: #2c5aa0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 16px;
}

.select-service-btn {
    width: 100%;
    padding: 12px;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.select-service-btn:hover {
    background-color: #234a85;
    transform: scale(1.02);
}

.registration-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.registration-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.registration-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.selected-service-display,
.selected-price-display {
    font-size: 18px;
    margin-bottom: 12px;
    color: #5a6c7d;
}

.selected-service-display span,
.selected-price-display span {
    font-weight: 600;
    color: #2c5aa0;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d9e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-group a {
    color: #2c5aa0;
}

.submit-btn {
    width: 100%;
    padding: 14px;
    background-color: #2c5aa0;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.submit-btn:hover {
    background-color: #234a85;
    transform: scale(1.01);
}

.trust-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.trust-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    border-left: 4px solid #2c5aa0;
}

.testimonial-card p {
    font-size: 16px;
    font-style: italic;
    color: #5a6c7d;
    margin-bottom: 20px;
}

.testimonial-author strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 4px;
}

.testimonial-author span {
    color: #8899a6;
    font-size: 14px;
}

.info-section {
    padding: 80px 0;
    background-color: #2c5aa0;
    color: #ffffff;
}

.info-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.info-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.info-card p {
    font-size: 16px;
    opacity: 0.95;
}

.info-card a {
    color: #ffffff;
    font-weight: 600;
}

.main-footer {
    background-color: #1e2d3d;
    color: #b8c5d0;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    gap: 48px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

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

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

.footer-section a {
    color: #b8c5d0;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    background-color: #162431;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-references {
    margin-bottom: 32px;
}

.footer-references h4 {
    color: #ffffff;
    margin-bottom: 12px;
    font-size: 16px;
}

.footer-references ol {
    padding-left: 20px;
}

.footer-references li {
    margin-bottom: 8px;
    font-size: 14px;
}

.footer-references a {
    color: #7fa3d1;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2c3e50;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e2d3d;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
    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;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 15px;
}

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

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

.btn-accept {
    background-color: #2c5aa0;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #234a85;
    transform: scale(1.02);
}

.btn-reject {
    background-color: #5a6c7d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #4a5c6d;
    transform: scale(1.02);
}

.page-header {
    background: linear-gradient(135deg, #2c5aa0 0%, #2c3e50 100%);
    color: #ffffff;
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 44px;
    margin-bottom: 12px;
}

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

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

.content-grid {
    display: flex;
    gap: 48px;
    align-items: center;
    flex-wrap: wrap;
}

.content-block {
    flex: 1;
    min-width: 300px;
}

.content-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.content-block p {
    margin-bottom: 16px;
    font-size: 17px;
    color: #5a6c7d;
}

.content-image {
    flex: 1;
    min-width: 300px;
}

.content-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.approach-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.approach-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 56px;
    color: #2c3e50;
}

.approach-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.approach-card {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    width: calc(50% - 16px);
    min-width: 300px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.approach-number {
    font-size: 48px;
    font-weight: 700;
    color: #e8f2ff;
    margin-bottom: 12px;
}

.approach-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c5aa0;
}

.approach-card p {
    color: #5a6c7d;
    font-size: 16px;
}

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

.values-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 12px;
    border-top: 4px solid #2c5aa0;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.value-card p {
    color: #5a6c7d;
    font-size: 16px;
}

.story-detail-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.story-detail-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.services-detail-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.services-intro {
    max-width: 800px;
    margin: 0 auto 56px;
    text-align: center;
    font-size: 17px;
    color: #5a6c7d;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
}

.service-detail-header {
    flex: 0 0 40%;
    min-width: 300px;
    background-color: #e0e7ef;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.service-meta span {
    background-color: #e8f2ff;
    color: #2c5aa0;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.service-price-tag {
    background-color: #2c5aa0;
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

.service-detail-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.service-detail-content ul {
    list-style-position: inside;
    margin-bottom: 24px;
}

.service-detail-content ul li {
    margin-bottom: 8px;
    color: #5a6c7d;
    font-size: 15px;
}

.detail-cta {
    display: inline-block;
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 12px 28px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.detail-cta:hover {
    background-color: #234a85;
    transform: scale(1.02);
}

.faq-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #ffffff;
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.faq-item p {
    color: #5a6c7d;
    font-size: 16px;
}

.contact-section {
    padding: 80px 0;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 300px;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-info-card h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.contact-label {
    font-weight: 600;
    color: #2c5aa0;
    margin-bottom: 8px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-value {
    color: #2c3e50;
    font-size: 16px;
    line-height: 1.6;
}

.contact-note {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #d1d9e0;
}

.contact-note p {
    color: #5a6c7d;
    font-size: 15px;
    font-style: italic;
}

.contact-map-placeholder {
    flex: 1;
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e0e7ef;
}

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

.contact-additional {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.additional-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}

.additional-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.additional-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.additional-card p {
    color: #5a6c7d;
    font-size: 16px;
    margin-bottom: 16px;
}

.additional-card a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 600;
}

.additional-card a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #28a745;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 20px;
    color: #5a6c7d;
    margin-bottom: 32px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 28px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

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

#service-confirmation {
    font-weight: 600;
    color: #2c5aa0;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1;
    min-width: 200px;
    background-color: #f8f9fa;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 48px;
    height: 48px;
    background-color: #2c5aa0;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.step-card p {
    color: #5a6c7d;
    font-size: 14px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #2c5aa0;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #234a85;
    transform: scale(1.02);
}

.btn-secondary {
    background-color: #5a6c7d;
    color: #ffffff;
}

.btn-secondary:hover {
    background-color: #4a5c6d;
    transform: scale(1.02);
}

.legal-content {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-text h2 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-text h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c5aa0;
}

.legal-text p {
    margin-bottom: 16px;
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
}

.legal-text ul,
.legal-text ol {
    margin-bottom: 16px;
    padding-left: 32px;
}

.legal-text li {
    margin-bottom: 8px;
    color: #5a6c7d;
    font-size: 16px;
    line-height: 1.7;
}

.legal-text a {
    color: #2c5aa0;
}

.legal-text a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .main-nav {
        gap: 20px;
    }

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

    .hero-content p {
        font-size: 18px;
    }

    .service-card {
        width: 100%;
    }

    .approach-card {
        width: 100%;
    }

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

    .service-detail-header {
        height: 250px;
    }

    .thanks-content {
        padding: 40px 24px;
    }

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