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

.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: 18px 0;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f2d;
    letter-spacing: -0.5px;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2a2a2a;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.2s;
}

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

.ad-label {
    font-size: 12px;
    color: #666;
    background-color: #f0f0f0;
    padding: 6px 12px;
    border-radius: 4px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #2a2a2a;
    border-radius: 2px;
    transition: all 0.3s;
}

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

.hero-image {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
    background-color: #d4d4d4;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    align-items: center;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
    max-width: 700px;
}

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

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

.cta-primary:hover {
    background-color: #234a23;
    transform: translateY(-2px);
}

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

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f8f8;
    padding: 40px 32px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
}

.info-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 16px;
}

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

.featured-work {
    padding: 80px 0;
    background-color: #fafafa;
}

.work-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.work-image {
    flex: 1;
    background-color: #d4d4d4;
    border-radius: 8px;
    overflow: hidden;
}

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

.work-content {
    flex: 1;
}

.work-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 24px;
    line-height: 1.3;
}

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

.link-arrow {
    display: inline-block;
    color: #2c5f2d;
    font-weight: 600;
    text-decoration: none;
    font-size: 16px;
    margin-top: 12px;
    transition: transform 0.2s;
}

.link-arrow:hover {
    transform: translateX(5px);
}

.link-arrow::after {
    content: ' →';
}

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

.services-preview h2 {
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2a2a2a;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d4d4d4;
}

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

.service-info {
    padding: 32px;
}

.service-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 12px;
}

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    padding: 14px 24px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #234a23;
}

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

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.contact-intro {
    text-align: center;
    margin-bottom: 48px;
}

.contact-intro h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 16px;
}

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

.contact-form {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #2c5f2d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #234a23;
}

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

.trust-content h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 48px;
    color: #ffffff;
}

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

.trust-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 32px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
}

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

.trust-card p {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.main-footer {
    background-color: #1a1a1a;
    color: #cccccc;
    padding: 60px 0 30px;
}

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

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

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

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

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

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

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

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

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    font-style: italic;
    max-width: 800px;
    margin: 12px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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;
}

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

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

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

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

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

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

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

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

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

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

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

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

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

.service-detail-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 20px;
}

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

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

.feature-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    font-size: 15px;
    color: #555;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #2c5f2d;
    font-weight: 700;
}

.pricing-info {
    margin: 24px 0;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-label {
    font-size: 14px;
    color: #666;
}

.price-amount {
    font-size: 36px;
    font-weight: 700;
    color: #2c5f2d;
}

.price-period {
    font-size: 14px;
    color: #666;
}

.service-detail-image {
    flex: 1;
    background-color: #d4d4d4;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.cta-section h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 16px;
}

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

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

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

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 24px;
}

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

.about-image {
    flex: 1;
    background-color: #d4d4d4;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.values-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2a2a2a;
}

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

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

.value-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 12px;
}

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

.team-approach {
    padding: 80px 0;
    background-color: #ffffff;
}

.team-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-image {
    flex: 1;
    background-color: #d4d4d4;
    border-radius: 8px;
    overflow: hidden;
}

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

.team-content {
    flex: 1;
}

.team-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 24px;
}

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

.process-section {
    padding: 80px 0;
    background-color: #fafafa;
}

.process-section h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #2a2a2a;
}

.process-steps {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

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

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 16px;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 12px;
}

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

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

.commitment-content h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
    color: #2a2a2a;
}

.commitment-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 900px;
    margin: 0 auto 40px;
    text-align: center;
}

.commitment-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    margin-top: 60px;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    flex: 1;
    min-width: 250px;
}

.stat-value {
    font-size: 52px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

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

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

.contact-info-card {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 32px;
    background-color: #f8f8f8;
    border-radius: 12px;
}

.contact-info-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 12px;
}

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

.contact-map-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.map-placeholder {
    width: 100%;
    height: 500px;
    background-color: #d4d4d4;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-additional {
    padding: 60px 0;
    background-color: #ffffff;
}

.contact-additional h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 24px;
    text-align: center;
}

.contact-additional p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    max-width: 800px;
    margin: 0 auto 20px;
    text-align: center;
}

.directions-section {
    padding: 60px 0;
    background-color: #fafafa;
}

.directions-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 48px;
    text-align: center;
}

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

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

.direction-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #2c5f2d;
    margin-bottom: 12px;
}

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

.faq-section {
    padding: 60px 0;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 32px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 48px;
    text-align: center;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: #f8f8f8;
    padding: 32px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 12px;
}

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

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

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

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 42px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 16px;
}

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

.thanks-details {
    background-color: #f8f8f8;
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 48px;
}

.thanks-details h2 {
    font-size: 28px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 32px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 20px;
    text-align: left;
}

.step-num {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: #2c5f2d;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.step-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 8px;
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
}

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

.thanks-info p {
    font-size: 16px;
    color: #555;
    margin-bottom: 24px;
}

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

.link-button {
    display: inline-block;
    padding: 12px 28px;
    background-color: #f0f0f0;
    color: #2a2a2a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    transition: background-color 0.3s;
}

.link-button:hover {
    background-color: #e0e0e0;
}

.thanks-contact {
    padding: 24px;
    background-color: #f8f8f8;
    border-radius: 8px;
}

.thanks-contact p {
    font-size: 14px;
    color: #666;
}

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

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

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

.legal-text h3 {
    font-size: 22px;
    font-weight: 700;
    color: #2c5f2d;
    margin-top: 32px;
    margin-bottom: 12px;
}

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

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

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

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

.cookie-table thead {
    background-color: #f0f0f0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px 16px;
    text-align: left;
    border: 1px solid #e0e0e0;
    font-size: 15px;
}

.cookie-table th {
    font-weight: 700;
    color: #2a2a2a;
}

.cookie-table td {
    color: #555;
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background-color: #ffffff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        transition: left 0.3s;
        padding: 20px;
    }

    .main-nav.active {
        left: 0;
    }

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

    .hamburger {
        display: flex;
    }

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

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

    .card-grid,
    .service-cards,
    .values-grid {
        flex-direction: column;
    }

    .work-layout,
    .about-layout,
    .team-layout,
    .service-detail-card {
        flex-direction: column;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }
}
