* {
    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: #333;
    background: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #fff;
    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;
    gap: 20px;
}

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

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

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

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

.btn-accept {
    background: #ffd700;
    color: #000;
}

.btn-accept:hover {
    background: #ffed4e;
}

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

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

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

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

.logo {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    font-size: 15px;
}

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

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s;
}

.hero-split {
    padding: 80px 40px;
    background: #f9f9f9;
}

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

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-text p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-image {
    flex: 1;
    max-width: 600px;
}

.hero-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 16px;
}

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

.intro-split {
    padding: 100px 40px;
}

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

.intro-content.reverse {
    flex-direction: row-reverse;
}

.intro-image {
    flex: 1;
    max-width: 550px;
}

.intro-image img {
    width: 100%;
    border-radius: 8px;
}

.intro-text {
    flex: 1;
}

.intro-text h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
    line-height: 1.2;
}

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

.why-choose {
    padding: 100px 40px;
    background: #1a1a1a;
    color: #fff;
}

.why-content {
    max-width: 1400px;
    margin: 0 auto;
}

.why-content h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.why-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    transition: all 0.3s;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.why-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.why-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 600;
}

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

.services-preview {
    padding: 100px 40px;
    background: #fff;
}

.services-header {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.services-header h2 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.services-split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-item {
    display: flex;
    gap: 60px;
    align-items: center;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 1;
    max-width: 600px;
}

.service-visual img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.service-details {
    flex: 1;
}

.service-details h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-details p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    color: #ffd700;
    font-weight: 700;
    margin-bottom: 24px;
}

.cta-service {
    padding: 14px 36px;
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 16px;
}

.cta-service:hover {
    background: #ffd700;
    color: #000;
    transform: translateY(-2px);
}

.services-footer {
    text-align: center;
    margin-top: 60px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 36px;
    background: transparent;
    color: #1a1a1a;
    font-weight: 600;
    border: 2px solid #1a1a1a;
    border-radius: 6px;
    transition: all 0.3s;
    font-size: 16px;
}

.cta-secondary:hover {
    background: #1a1a1a;
    color: #fff;
}

.testimonials {
    padding: 100px 40px;
    background: #f9f9f9;
}

.testimonials-content {
    max-width: 1400px;
    margin: 0 auto;
}

.testimonials-content h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    padding: 40px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.testimonial p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 16px;
}

.process-split {
    padding: 100px 40px;
    background: #fff;
}

.process-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.process-text {
    flex: 1;
}

.process-text h2 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 24px;
    font-weight: 700;
    color: #ffd700;
    min-width: 50px;
}

.step-content h4 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.process-image {
    flex: 1;
    max-width: 600px;
}

.process-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.cta-banner {
    padding: 100px 40px;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
}

.cta-banner-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.cta-banner-content h2 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-banner-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.cta-large {
    padding: 18px 48px;
    background: #ffd700;
    color: #000;
    font-weight: 700;
    border-radius: 6px;
    font-size: 18px;
    transition: all 0.3s;
}

.cta-large:hover {
    background: #ffed4e;
    transform: scale(1.05);
}

.portfolio-preview {
    padding: 100px 40px;
    background: #f9f9f9;
}

.portfolio-content {
    max-width: 1400px;
    margin: 0 auto;
}

.portfolio-content h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.portfolio-masonry {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.portfolio-item {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    overflow: hidden;
    border-radius: 8px;
}

.portfolio-item.tall {
    flex: 1 1 calc(33.333% - 20px);
}

.portfolio-item.wide {
    flex: 1 1 calc(66.666% - 20px);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.show {
    display: flex;
}

.modal-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 32px;
    color: #333;
    background: none;
    border: none;
    cursor: pointer;
    line-height: 1;
}

.modal-content h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

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

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #1a1a1a;
    color: #fff;
    font-weight: 600;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #ffd700;
    color: #000;
}

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

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

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

.footer-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: #ffd700;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.3s;
}

.social-links a:hover {
    color: #ffd700;
}

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

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.sticky-cta button {
    padding: 16px 32px;
    background: #ffd700;
    color: #000;
    font-weight: 700;
    border-radius: 50px;
    font-size: 16px;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.4);
    transition: all 0.3s;
}

.sticky-cta button:hover {
    background: #ffed4e;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(255, 215, 0, 0.6);
}

.contact-split {
    padding: 100px 40px;
}

.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 40px;
}

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

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.contact-map {
    flex: 1;
    background: #f0f0f0;
    border-radius: 8px;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
}

.page-header {
    padding: 100px 40px 60px;
    background: #f9f9f9;
    text-align: center;
}

.page-header h1 {
    font-size: 56px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 800;
}

.page-header p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    padding: 80px 40px;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 36px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-wrapper h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #1a1a1a;
    font-weight: 600;
}

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

.content-wrapper ul,
.content-wrapper ol {
    margin-left: 24px;
    margin-bottom: 20px;
}

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

.service-detail-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    align-items: center;
    padding: 40px;
    background: #f9f9f9;
    border-radius: 8px;
}

.service-detail-item:nth-child(even) {
    flex-direction: row-reverse;
    background: #fff;
}

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

.service-detail-info h3 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-detail-info ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-detail-info ul li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 12px;
    font-size: 16px;
    color: #555;
}

.service-detail-info ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffd700;
    font-weight: 700;
}

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

.service-detail-visual {
    flex: 1;
    max-width: 500px;
}

.service-detail-visual img {
    width: 100%;
    border-radius: 8px;
}

@media (max-width: 1024px) {
    .hero-content,
    .intro-content,
    .service-item,
    .process-content,
    .contact-container,
    .service-detail-item {
        flex-direction: column;
    }

    .service-item.reverse,
    .intro-content.reverse,
    .service-detail-item:nth-child(even) {
        flex-direction: column;
    }

    .hero-text h1,
    .services-header h2,
    .why-content h2,
    .testimonials-content h2,
    .portfolio-content h2,
    .cta-banner-content h2,
    .page-header h1 {
        font-size: 40px;
    }

    .intro-text h2,
    .process-text h2,
    .contact-info h1 {
        font-size: 36px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }

    .nav-links.active {
        display: flex;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        gap: 20px;
    }

    .hero-split,
    .intro-split,
    .services-preview,
    .testimonials,
    .process-split,
    .cta-banner,
    .portfolio-preview,
    .why-choose,
    .content-section,
    .service-detail-grid {
        padding: 60px 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

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

    .hero-text p {
        font-size: 17px;
    }

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

    .cookie-buttons {
        justify-content: center;
    }

    .testimonial-grid,
    .why-grid {
        flex-direction: column;
    }

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

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
    }

    .sticky-cta button {
        padding: 14px 24px;
        font-size: 14px;
    }
}