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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

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

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

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

.btn-accept {
    background-color: #4a90e2;
    color: #ffffff;
}

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

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

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

.header-transparent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: 30px 60px;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.nav-main {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-main a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: opacity 0.3s ease;
}

.nav-main a:hover {
    opacity: 0.8;
}

.ad-disclosure {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
    padding: 6px 12px;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 4px;
    text-shadow: none;
}

.hero-visual {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.hero-image-wrap {
    width: 100%;
    height: 100%;
    position: relative;
}

.hero-image-wrap 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.2) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 0 60px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 700px;
    margin-bottom: 20px;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
}

.hero-overlay p {
    font-size: 22px;
    font-weight: 300;
    max-width: 600px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.intro-offset {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

.intro-text-block h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.intro-text-block p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #4a4a4a;
}

.intro-visual {
    flex: 0 0 500px;
    background-color: #f5f5f5;
}

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

.philosophy-wide {
    background-color: #fafafa;
    padding: 100px 60px;
}

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

.philosophy-image {
    flex: 0 0 450px;
    background-color: #e8e8e8;
}

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

.philosophy-content {
    flex: 1;
}

.philosophy-content h3 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.philosophy-content p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #4a4a4a;
}

.link-inline {
    display: inline-block;
    margin-top: 15px;
    color: #4a90e2;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.link-inline:hover {
    color: #357abd;
}

.services-preview {
    padding: 120px 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-preview h2 {
    font-size: 48px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 70px;
    color: #1a1a1a;
}

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

.service-card {
    flex: 0 0 calc(33.333% - 27px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

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

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

.service-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin: 25px 25px 15px 25px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 20px 25px;
    color: #5a5a5a;
}

.service-price {
    font-size: 20px;
    font-weight: 700;
    color: #4a90e2;
    margin: 0 25px 20px 25px;
}

.btn-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 14px 0;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    background-color: #f5f5f5;
    padding: 100px 60px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    font-size: 17px;
    color: #5a5a5a;
    text-align: center;
    margin-bottom: 50px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    background-color: #ffffff;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px 0;
    background-color: #4a90e2;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #357abd;
}

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

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

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

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

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    font-size: 13px;
    color: #808080;
}

@media (max-width: 1024px) {
    .intro-offset {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-visual {
        flex: 0 0 auto;
        width: 100%;
    }

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

    .philosophy-image {
        flex: 0 0 auto;
        width: 100%;
    }

    .services-grid {
        gap: 30px;
    }

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .footer-content {
        flex-wrap: wrap;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .header-transparent {
        padding: 20px 30px;
    }

    .nav-main {
        flex-wrap: wrap;
        gap: 15px;
    }

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

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

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

    .services-preview h2 {
        font-size: 36px;
    }

    .intro-text-block h2 {
        font-size: 32px;
    }
}