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

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

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

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

.cookie-banner.visible {
    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: 300px;
    margin: 0;
}

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

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

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

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

.main-nav a {
    color: #555;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover,
.main-nav a.nav-active {
    color: #3498db;
}

.ad-disclosure {
    font-size: 12px;
    color: #999;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-section {
    position: relative;
    margin-bottom: 80px;
}

.hero-background {
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.92), rgba(52, 152, 219, 0.85));
    width: 100%;
    padding: 80px 0;
}

.hero-section h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-section p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 32px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(52, 152, 219, 0.4);
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #3498db;
    padding: 14px 32px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #3498db;
    cursor: pointer;
}

.cta-button-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.intro-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

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

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

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

.intro-card p {
    color: #666;
    line-height: 1.7;
}

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

.services-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.service-content {
    padding: 28px;
}

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

.service-content p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin-bottom: 20px;
}

.service-features li {
    padding: 6px 0;
    color: #555;
    position: relative;
    padding-left: 24px;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: bold;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 16px;
}

.service-cta {
    width: 100%;
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-cta:hover {
    background-color: #2980b9;
}

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

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

.insights-text {
    flex: 1;
    min-width: 320px;
}

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

.insights-text p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.8;
    font-size: 17px;
}

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

.insights-image img {
    width: 100%;
    height: auto;
}

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

.cta-card {
    background: linear-gradient(135deg, #3498db, #2c3e50);
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    color: #ffffff;
}

.cta-card h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #ecf0f1;
}

.page-hero {
    background-color: #2c3e50;
    padding: 60px 0;
    text-align: center;
    color: #ffffff;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-hero p {
    font-size: 18px;
    color: #ecf0f1;
}

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

.inquiry-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.inquiry-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

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

.inquiry-card p {
    color: #666;
    margin-bottom: 28px;
    font-size: 17px;
}

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

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

.about-text {
    flex: 1;
    min-width: 320px;
}

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

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

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

.about-image img {
    width: 100%;
    height: auto;
}

.values-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

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

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

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

.value-card p {
    color: #666;
    line-height: 1.7;
}

.approach-section {
    padding: 60px 0;
}

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

.approach-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.step-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    position: relative;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    opacity: 0.3;
    margin-bottom: 12px;
}

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

.step-card p {
    color: #666;
    line-height: 1.7;
}

.expertise-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

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

.expertise-list {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}

.expertise-item {
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.expertise-item h4 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.expertise-item p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

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

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

.contact-form-wrapper {
    flex: 2;
    min-width: 320px;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-form-wrapper p {
    color: #666;
    margin-bottom: 32px;
}

.contact-form {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
}

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

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

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

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

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #666;
}

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

.checkbox-label a {
    color: #3498db;
    text-decoration: underline;
}

.submit-button {
    width: 100%;
    padding: 14px 32px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #2980b9;
}

.contact-info-wrapper {
    flex: 1;
    min-width: 280px;
}

.contact-info-card {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

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

.info-item {
    margin-bottom: 24px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.info-item p {
    color: #666;
    line-height: 1.7;
}

.contact-note {
    background-color: #e8f4f8;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.contact-note p {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
}

.thanks-section {
    padding: 80px 0;
    text-align: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

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

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

.thanks-message {
    font-size: 18px;
    color: #666;
    margin-bottom: 24px;
}

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

.thanks-details p {
    color: #555;
    font-size: 16px;
}

.thanks-section p {
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

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

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

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

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

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

.legal-text h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-text p {
    color: #666;
    margin-bottom: 16px;
    line-height: 1.8;
}

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

.legal-text li {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-text a {
    color: #3498db;
    text-decoration: underline;
}

.main-footer {
    background-color: #1a1a2e;
    color: #ecf0f1;
    padding: 60px 0 20px;
    margin-top: 80px;
}

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

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

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

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

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

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

.footer-column ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

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

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

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

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

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

    .hero-section h1 {
        font-size: 32px;
    }

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

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

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

    .thanks-actions {
        flex-direction: column;
    }
}