* {
    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: #ffffff;
}

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

.main-header {
    background: #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.ad-disclosure {
    font-size: 12px;
    color: #95a5a6;
    padding: 6px 12px;
    background: rgba(255,255,255,0.1);
    border-radius: 4px;
    margin: 0 20px;
}

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

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

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

.hero-asymmetric {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 90vh;
    position: relative;
    overflow: hidden;
    padding: 80px 20px;
}

.hero-content-offset {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    padding: 40px;
    background: rgba(255,255,255,0.95);
    border-radius: 12px;
    transform: translateX(-30px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-text-block p {
    font-size: 20px;
    color: #555;
    margin-bottom: 30px;
}

.hero-image-float {
    flex: 1;
    position: relative;
    transform: translateY(40px) rotate(3deg);
    z-index: 1;
}

.hero-image-float img {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.3);
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4ecdc4;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(78,205,196,0.3);
}

.cta-primary:hover {
    background: #45b8b0;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(78,205,196,0.4);
}

.intro-overlapping {
    padding: 120px 20px 100px;
    background: #f8f9fa;
    position: relative;
}

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

.intro-card-left {
    flex: 1;
    background: #fff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateX(40px);
    z-index: 2;
}

.intro-card-left h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.intro-card-left p {
    font-size: 18px;
    color: #555;
    line-height: 1.8;
}

.intro-visual-right {
    flex: 1;
    position: relative;
    transform: translateX(-40px);
}

.intro-visual-right img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    object-fit: cover;
}

.services-irregular {
    padding: 100px 20px;
    background: #ffffff;
}

.services-header-offset {
    max-width: 800px;
    margin: 0 0 60px 120px;
}

.services-header-offset h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.services-header-offset p {
    font-size: 20px;
    color: #666;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

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

.service-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 400px;
}

.service-small {
    flex: 1 1 calc(40% - 15px);
    min-width: 350px;
}

.service-medium {
    flex: 1 1 calc(50% - 15px);
    min-width: 380px;
}

.service-accent {
    flex: 1 1 calc(50% - 15px);
    min-width: 380px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
}

.service-accent h3,
.service-accent p {
    color: #fff;
}

.service-wide {
    flex: 1 1 calc(70% - 15px);
    min-width: 500px;
}

.service-compact {
    flex: 1 1 calc(30% - 15px);
    min-width: 300px;
}

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

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

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

.service-card h3 {
    font-size: 24px;
    color: #2c3e50;
    margin: 24px 24px 12px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #666;
    margin: 0 24px 20px;
    flex-grow: 1;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #4ecdc4;
    margin: 0 24px 20px;
}

.service-accent .price {
    color: #ffd700;
}

.btn-select {
    background: #4ecdc4;
    color: #fff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0 0 12px 12px;
    cursor: pointer;
    transition: background 0.3s;
    width: 100%;
}

.btn-select:hover {
    background: #45b8b0;
}

.service-accent .btn-select {
    background: rgba(255,255,255,0.2);
}

.service-accent .btn-select:hover {
    background: rgba(255,255,255,0.3);
}

.trust-section-diagonal {
    padding: 100px 20px;
    background: linear-gradient(165deg, #f8f9fa 0%, #e9ecef 100%);
    transform: skewY(-2deg);
    margin: 80px 0;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    transform: skewY(2deg);
}

.trust-content h2 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 60px;
    text-align: center;
    font-weight: 800;
}

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

.trust-item {
    flex: 1;
    min-width: 280px;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: rotate(-1deg);
}

.trust-item:nth-child(2) {
    transform: rotate(1deg) translateY(20px);
}

.trust-item:nth-child(3) {
    transform: rotate(-0.5deg);
}

.trust-item h3 {
    font-size: 24px;
    color: #667eea;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.form-section-offset {
    padding: 100px 20px;
    background: #ffffff;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    padding-right: 40px;
}

.form-intro h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.form-intro p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
}

.contact-form {
    flex: 1.2;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #667eea;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #5568d3;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102,126,234,0.3);
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff9e6;
    border-top: 3px solid #ffd700;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    background: #fffbf0;
    border-radius: 8px;
    border-left: 4px solid #f39c12;
}

.disclaimer-content p {
    font-size: 14px;
    color: #555;
    line-height: 1.8;
}

.main-footer {
    background: #1a1a1a;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

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

.footer-brand h3 {
    font-size: 28px;
    color: #4ecdc4;
    margin-bottom: 12px;
}

.footer-brand p {
    color: #95a5a6;
}

.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-column h4 {
    font-size: 18px;
    color: #4ecdc4;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: #bdc3c7;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: #4ecdc4;
}

.footer-column p {
    color: #95a5a6;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #2c3e50;
    color: #7f8c8d;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 15px;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-accept {
    background: #4ecdc4;
    color: #fff;
}

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

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

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

.about-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
}

.about-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 22px;
    opacity: 0.95;
}

.about-story {
    padding: 100px 20px;
    background: #fff;
}

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

.story-block {
    flex: 1;
}

.story-block img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    object-fit: cover;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.about-values {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

.about-values h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 60px;
    font-weight: 800;
}

.values-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.value-card {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    color: #667eea;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.about-approach {
    padding: 100px 20px;
    background: #fff;
}

.approach-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

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

.approach-visual {
    flex: 1;
}

.approach-visual img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    object-fit: cover;
}

.about-team {
    padding: 100px 20px;
    background: #f8f9fa;
    text-align: center;
}

.about-team h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 800;
}

.team-description {
    max-width: 900px;
    margin: 0 auto;
}

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

.about-cta {
    padding: 100px 20px;
    background: #fff;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 60px 40px;
    border-radius: 16px;
    color: #fff;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.services-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
}

.services-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.services-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.service-detail {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

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

.service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    object-fit: cover;
}

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

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

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

.service-detail-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.service-detail-content ul li {
    font-size: 16px;
    color: #555;
    padding: 8px 0 8px 30px;
    position: relative;
}

.service-detail-content ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #4ecdc4;
    font-weight: 700;
    font-size: 18px;
}

.service-price {
    font-size: 24px;
    color: #667eea;
    font-weight: 700;
    margin: 24px 0;
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: #4ecdc4;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-service:hover {
    background: #45b8b0;
    transform: translateY(-2px);
}

.services-cta {
    background: #f8f9fa;
    padding: 80px 20px;
    text-align: center;
}

.services-cta h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.contact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 20px 80px;
    text-align: center;
    color: #fff;
}

.contact-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.contact-hero p {
    font-size: 22px;
    opacity: 0.95;
}

.contact-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    display: flex;
    gap: 60px;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.contact-detail h3 {
    font-size: 20px;
    color: #667eea;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.contact-map-placeholder {
    flex: 1;
}

.contact-map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
}

.contact-additional {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.contact-additional h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 40px;
    text-align: center;
    font-weight: 700;
}

.help-options {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.help-card {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

.help-card h3 {
    font-size: 22px;
    color: #667eea;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    background: #f8f9fa;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background: #fff;
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.thanks-icon {
    margin-bottom: 30px;
}

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

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

.thanks-details {
    margin: 20px 0;
}

.selected-service {
    font-size: 17px;
    color: #667eea;
    padding: 16px;
    background: #f0f3ff;
    border-radius: 8px;
}

.thanks-next {
    margin: 40px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    text-align: left;
}

.thanks-next h2 {
    font-size: 24px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: #667eea;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #5568d3;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: #fff;
    color: #667eea;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    border: 2px solid #667eea;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background: #667eea;
    color: #fff;
}

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

.legal-page h1 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 800;
}

.legal-page .last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

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

.legal-page h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 12px;
    font-weight: 600;
}

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

.legal-page ul {
    margin: 16px 0;
    padding-left: 30px;
}

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

@media (max-width: 968px) {
    .hero-content-offset {
        flex-direction: column;
    }

    .hero-text-block {
        transform: translateX(0);
        max-width: 100%;
    }

    .hero-image-float {
        transform: translateY(0) rotate(0);
    }

    .container-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-card-left,
    .intro-visual-right {
        transform: translateX(0);
    }

    .services-header-offset {
        margin-left: 0;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

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

    .trust-elements {
        flex-direction: column;
    }

    .trust-item {
        transform: rotate(0) !important;
    }

    .story-container,
    .approach-content {
        flex-direction: column;
    }

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

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

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