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

.ad-disclosure {
    background-color: #f8f8f8;
    text-align: center;
    padding: 8px 16px;
    font-size: 0.75rem;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.floating-nav {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 16px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-radius: 50px;
    min-width: 700px;
}

.nav-brand {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-links a {
    text-decoration: none;
    color: #333;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #0066cc;
}

.hero-asymmetric {
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 140px 80px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding-right: 60px;
    transform: translateY(-30px);
}

.hero-content-offset h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 36px;
    line-height: 1.7;
}

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

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

.hero-image-angular {
    flex: 0 0 55%;
    position: relative;
}

.hero-image-angular img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 20px 0 20px 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e9ecef;
}

.intro-offset {
    display: flex;
    padding: 120px 80px;
    gap: 80px;
    align-items: flex-start;
    background-color: #fafafa;
}

.intro-narrow {
    flex: 0 0 40%;
    font-size: 1.15rem;
    line-height: 1.8;
    color: #333;
    padding-top: 40px;
}

.intro-visual-block {
    flex: 0 0 50%;
    transform: translateY(60px);
}

.intro-visual-block img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #e9ecef;
}

.services-asymmetric {
    padding: 140px 80px;
    background-color: #ffffff;
}

.services-header-offset {
    max-width: 600px;
    margin-bottom: 80px;
    margin-left: 120px;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.services-header-offset p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: flex-start;
}

.service-card {
    background: #f8f9fa;
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    flex: 0 0 calc(33.333% - 20px);
}

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

.service-card-wide {
    flex: 0 0 calc(66.666% - 20px);
}

.service-card-narrow {
    flex: 0 0 calc(25% - 23px);
}

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

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

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

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

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

.service-content h3 {
    font-size: 1.4rem;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 20px;
}

.service-select {
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select:hover {
    background-color: #333;
}

.form-section-offset {
    padding: 140px 80px 140px 200px;
    background: linear-gradient(120deg, #e8f4f8 0%, #f0f0f0 100%);
}

.form-container-angular {
    max-width: 600px;
    background: #ffffff;
    padding: 60px;
    border-radius: 0 24px 0 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transform: translateX(80px);
}

.form-container-angular h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    color: #666;
    margin-bottom: 36px;
    line-height: 1.6;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 12px;
}

.btn-submit:hover {
    background-color: #0052a3;
}

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

.trust-content-split {
    display: flex;
    gap: 100px;
    align-items: center;
}

.trust-text {
    flex: 0 0 50%;
    transform: translateX(-40px);
}

.trust-text h2 {
    font-size: 2.5rem;
    margin-bottom: 28px;
    color: #1a1a1a;
    font-weight: 700;
}

.trust-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.trust-visual {
    flex: 0 0 45%;
}

.trust-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 80px 40px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 60px;
    gap: 60px;
}

.footer-block {
    flex: 1;
}

.footer-block h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-block h4 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    font-weight: 600;
    color: #ffffff;
}

.footer-block p {
    color: #aaa;
    line-height: 1.6;
    font-size: 0.95rem;
}

.footer-block a {
    display: block;
    color: #ccc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.disclaimer {
    background-color: #252525;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.disclaimer p {
    font-size: 0.85rem;
    color: #aaa;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    color: #888;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.97);
    backdrop-filter: blur(10px);
    padding: 24px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    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: 40px;
}

.cookie-content p {
    color: #ffffff;
    font-size: 0.95rem;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #66b3ff;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #0052a3;
}

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

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

.about-hero {
    padding: 160px 80px 80px;
    background: linear-gradient(135deg, #f0f0f0 0%, #ffffff 100%);
}

.about-intro-offset {
    max-width: 800px;
    margin-left: 120px;
}

.about-intro-offset h1 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.about-lead {
    font-size: 1.3rem;
    color: #555;
    line-height: 1.7;
}

.about-story {
    padding: 120px 80px;
    display: flex;
    gap: 80px;
    align-items: center;
    background-color: #ffffff;
}

.story-image-left {
    flex: 0 0 45%;
    transform: translateY(-40px);
}

.story-image-left img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

.story-content-right {
    flex: 0 0 50%;
}

.story-content-right h2 {
    font-size: 2.4rem;
    margin-bottom: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

.story-content-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.values-section {
    padding: 120px 80px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.6rem;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 700;
    color: #1a1a1a;
}

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

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.team-approach {
    padding: 120px 80px;
    display: flex;
    gap: 100px;
    align-items: flex-start;
    background-color: #ffffff;
}

.approach-content {
    flex: 0 0 55%;
}

.approach-content h2 {
    font-size: 2.4rem;
    margin-bottom: 28px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.approach-visual {
    flex: 0 0 40%;
    transform: translateY(80px);
}

.approach-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

.cta-section-about {
    padding: 100px 80px;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
    text-align: center;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content-centered h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content-centered p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #0066cc;
    padding: 16px 48px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: transform 0.2s, box-shadow 0.3s;
}

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

.services-page-header {
    padding: 160px 80px 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    text-align: center;
}

.services-page-header h1 {
    font-size: 3.2rem;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.services-intro {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-detailed {
    padding: 80px;
}

.service-detail-item {
    display: flex;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    padding: 60px;
    background-color: #f8f9fa;
    border-radius: 20px;
}

.service-detail-item.service-reverse {
    flex-direction: row-reverse;
    background-color: #ffffff;
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #e9ecef;
}

.service-detail-content {
    flex: 0 0 50%;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.service-pricing-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 28px 0;
    padding: 20px;
    background-color: rgba(0, 102, 204, 0.05);
    border-radius: 8px;
    border-left: 4px solid #0066cc;
}

.price-label {
    font-size: 0.95rem;
    color: #666;
    font-weight: 500;
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
}

.service-cta {
    display: inline-block;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 14px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s;
}

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

.services-cta {
    padding: 100px 80px;
    text-align: center;
    background: linear-gradient(135deg, #f0f0f0 0%, #e8f4f8 100%);
}

.services-cta h2 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.services-cta p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-button-secondary {
    display: inline-block;
    background-color: #0066cc;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s, transform 0.2s;
}

.cta-button-secondary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
}

.contact-header {
    padding: 160px 80px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-header h1 {
    font-size: 3.2rem;
    margin-bottom: 20px;
    font-weight: 800;
    color: #1a1a1a;
}

.contact-intro {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.7;
}

.contact-main {
    padding: 80px;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.contact-info-block {
    flex: 0 0 45%;
}

.contact-info-block h2 {
    font-size: 2.4rem;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 40px;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.contact-image-visual {
    flex: 0 0 50%;
    transform: translateY(-60px);
}

.contact-image-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

.contact-map-placeholder {
    padding: 80px;
    background-color: #f8f9fa;
}

.map-text {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.map-text h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.map-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
}

.thanks-section {
    padding: 160px 80px;
    display: flex;
    gap: 100px;
    align-items: center;
    min-height: 80vh;
}

.thanks-content {
    flex: 0 0 55%;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 24px;
    font-weight: 800;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 36px;
    line-height: 1.7;
}

.thanks-service-info {
    background-color: #e8f4f8;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 36px;
    border-left: 4px solid #0066cc;
}

.thanks-service-info p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 8px;
}

.thanks-service-info strong {
    color: #0066cc;
    font-weight: 700;
}

.thanks-next-steps {
    margin-bottom: 40px;
}

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a1a1a;
}

.thanks-next-steps ul {
    list-style: none;
    padding: 0;
}

.thanks-next-steps li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: #555;
}

.thanks-next-steps li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
    font-size: 1.2rem;
}

.thanks-actions {
    display: flex;
    gap: 20px;
}

.btn-primary,
.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary {
    background-color: #0066cc;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background-color: #d0d0d0;
}

.thanks-visual {
    flex: 0 0 40%;
}

.thanks-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    background-color: #e9ecef;
}

.legal-page {
    padding: 160px 80px 80px;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    font-weight: 800;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #333;
}

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

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

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

.legal-content a {
    color: #0066cc;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #0052a3;
}

@media (max-width: 1024px) {
    .floating-nav {
        min-width: auto;
        width: 90%;
        padding: 12px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-asymmetric,
    .intro-offset,
    .about-story,
    .trust-content-split,
    .team-approach,
    .contact-main,
    .thanks-section,
    .service-detail-item {
        flex-direction: column;
    }

    .hero-content-offset,
    .intro-narrow,
    .story-content-right,
    .trust-text,
    .approach-content,
    .contact-info-block,
    .thanks-content {
        flex: 1 1 100%;
    }

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card,
    .service-card-large,
    .service-card-wide,
    .service-card-narrow {
        flex: 1 1 100%;
    }

    .value-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .hero-content-offset h1 {
        font-size: 2.5rem;
    }

    .services-asymmetric,
    .intro-offset,
    .about-story,
    .values-section,
    .team-approach,
    .contact-main,
    .thanks-section,
    .services-detailed {
        padding: 60px 24px;
    }

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .legal-page {
        padding: 120px 24px 60px;
    }
}