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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

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

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

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

.cookie-content a {
    color: #ffd700;
    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: #4CAF50;
    color: white;
}

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

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

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

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

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

.brand h1 {
    font-size: 24px;
    color: #1a1a2e;
    font-weight: 700;
}

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

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

.main-nav a:hover {
    color: #4CAF50;
}

.ad-label {
    background-color: #ffeaa7;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: #2d3436;
}

.hero-section {
    margin-bottom: 60px;
}

.hero-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: white;
}

.hero-overlay h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    max-width: 700px;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 600px;
    opacity: 0.95;
}

.cta-button {
    background-color: #4CAF50;
    color: white;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
    display: inline-block;
}

.cta-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.intro-cards {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.card-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 36px 28px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.info-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

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

.services-section {
    padding: 80px 0;
}

.section-title {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a1a2e;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 48px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.service-card {
    flex: 1 1 calc(33.333% - 22px);
    min-width: 300px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

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

.service-image {
    height: 240px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-info {
    padding: 28px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.service-info p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 16px;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background-color: #1a1a2e;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service:hover {
    background-color: #2d2d4a;
    transform: translateY(-2px);
}

.form-section {
    padding: 80px 0;
    background-color: #f4f4f4;
}

.form-card {
    max-width: 600px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.form-card p {
    font-size: 16px;
    color: #666;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select {
    padding: 14px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
}

.submit-button {
    padding: 16px;
    background-color: #4CAF50;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-button:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.testimonials-section {
    padding: 80px 0;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.testimonial-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-left: 4px solid #4CAF50;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
}

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

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

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4CAF50;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: #ccc;
}

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

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

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

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

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    color: #aaa;
}

.page-hero {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 60px 0;
}

.about-intro-card {
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 48px;
}

.about-intro-card h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.about-intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

.about-cards {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    margin-bottom: 60px;
}

.value-card {
    flex: 1;
    min-width: 300px;
    padding: 36px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.value-card p,
.value-card ul {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.value-card ul {
    list-style-position: inside;
}

.value-card li {
    margin-bottom: 8px;
}

.team-section {
    margin-bottom: 60px;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.team-intro {
    font-size: 18px;
    color: #666;
    margin-bottom: 40px;
}

.team-grid {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.team-card {
    flex: 1 1 calc(50% - 14px);
    min-width: 280px;
    padding: 28px;
    background-color: #f9f9f9;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.team-info h3 {
    font-size: 20px;
    margin-bottom: 4px;
    color: #1a1a2e;
}

.role {
    font-size: 14px;
    color: #4CAF50;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-info p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.structure-section {
    margin-bottom: 60px;
}

.structure-section h2 {
    font-size: 36px;
    margin-bottom: 32px;
    color: #1a1a2e;
}

.structure-cards {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.structure-card {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
    padding: 32px;
    background-color: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-top: 4px solid #4CAF50;
}

.structure-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.structure-card p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.methodology-section {
    padding: 48px;
    border-radius: 12px;
    margin-top: 40px;
}

.methodology-section h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.methodology-section > p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.methodology-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.method-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
}

.method-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.method-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.services-detailed {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    margin-bottom: 60px;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 320px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.price-tag {
    display: inline-block;
    background-color: #4CAF50;
    color: white;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 24px;
}

.service-detail-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #1a1a2e;
}

.included-list {
    list-style-position: inside;
    margin-bottom: 24px;
}

.included-list li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.select-service-btn {
    padding: 14px 32px;
    background-color: #1a1a2e;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-service-btn:hover {
    background-color: #2d2d4a;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 1;
    min-width: 320px;
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-section {
    padding: 80px 0;
    text-align: center;
    color: white;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.cta-content p {
    font-size: 20px;
    margin-bottom: 32px;
}

.contact-page {
    padding: 60px 0;
}

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

.contact-info-section {
    flex: 1;
    min-width: 320px;
}

.contact-card {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.contact-card h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #4CAF50;
    font-weight: 600;
}

.contact-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.location-card {
    padding: 32px;
    border-radius: 12px;
}

.location-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.location-card p {
    font-size: 15px;
    margin-bottom: 12px;
    color: #555;
}

.visit-section {
    flex: 1;
    min-width: 320px;
}

.visit-card {
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    margin-bottom: 32px;
}

.visit-card h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.visit-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.visit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #1a1a2e;
}

.checklist {
    list-style-position: inside;
    margin-bottom: 24px;
}

.checklist li {
    font-size: 15px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 8px;
}

.visit-note {
    background-color: #fff9e6;
    padding: 16px;
    border-radius: 6px;
    border-left: 4px solid #ffd700;
    margin-bottom: 24px;
}

.faq-section {
    background-color: #f9f9f9;
    padding: 32px;
    border-radius: 12px;
}

.faq-section h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #1a1a2e;
}

.faq-item {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #ddd;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #1a1a2e;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.thanks-section {
    padding: 80px 0;
    min-height: 60vh;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #4CAF50;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 24px;
}

.thanks-card h1 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

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

.thanks-info {
    text-align: left;
    margin-bottom: 32px;
}

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

.next-steps {
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
    text-align: left;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.steps-list {
    list-style-position: inside;
}

.steps-list li {
    font-size: 15px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 12px;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #4CAF50;
    color: white;
}

.btn-primary:hover {
    background-color: #45a049;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #1a1a2e;
    color: white;
}

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

.contact-reminder {
    background-color: #f9f9f9;
    padding: 24px;
    border-radius: 8px;
    text-align: left;
}

.contact-reminder p {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 8px;
}

.legal-page {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.legal-content h1 {
    font-size: 40px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.update-date {
    font-size: 14px;
    color: #888;
    margin-bottom: 32px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a2e;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1a1a2e;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #4CAF50;
    text-decoration: none;
}

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

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #ddd;
}

.cookie-table th {
    background-color: #f4f4f4;
    font-weight: 600;
    color: #1a1a2e;
}

.cookie-table td {
    font-size: 14px;
    color: #555;
}

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

    .main-nav ul {
        flex-direction: column;
        gap: 12px;
    }

    .hero-overlay h2 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

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

    .service-cards {
        flex-direction: column;
    }

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

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

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

    .service-detail-card {
        flex-direction: column;
        gap: 24px;
        padding: 28px;
    }

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

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

    .legal-content {
        padding: 32px 20px;
    }

    .cookie-table {
        font-size: 12px;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 8px;
    }
}