* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #1a1a1a;
    background-color: #ffffff;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    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;
    margin: 0;
    font-size: 14px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-btn.accept {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

.cookie-btn:hover {
    opacity: 0.8;
}

.main-header {
    background-color: #ffffff;
    border-bottom: 3px solid #1a1a1a;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo a {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: 1px;
}

.ad-notice {
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
}

.ad-notice span {
    font-size: 11px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-magazine {
    padding: 0;
    margin-bottom: 60px;
}

.hero-grid {
    display: flex;
    gap: 0;
    max-width: 1600px;
    margin: 0 auto;
}

.hero-main {
    flex: 2;
    position: relative;
    background-color: #1a1a1a;
}

.hero-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0.7;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #ffffff;
}

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

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
    opacity: 0.9;
}

.hero-sidebar {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.sidebar-card {
    padding: 40px;
    background-color: #f5f5f5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sidebar-card.dark {
    background-color: #d4af37;
    color: #1a1a1a;
}

.sidebar-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.sidebar-card p {
    font-size: 16px;
    line-height: 1.7;
}

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

.column-layout {
    display: flex;
    gap: 60px;
}

.col-main {
    flex: 2;
}

.col-main h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
    line-height: 1.3;
}

.col-main p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.col-side {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-box {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.phases-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.phase-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 40px;
    border-left: 4px solid #d4af37;
}

.phase-number {
    font-size: 72px;
    font-weight: 700;
    color: #d4af37;
    opacity: 0.3;
    margin-bottom: 20px;
}

.phase-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 700;
}

.phase-card p {
    font-size: 16px;
    line-height: 1.7;
}

.image-break {
    margin: 80px 0;
    background-color: #1a1a1a;
}

.image-break img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    opacity: 0.8;
}

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

.services-magazine-layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 60px;
}

.service-featured {
    display: flex;
    gap: 0;
    background-color: #f5f5f5;
}

.service-featured img {
    width: 50%;
    object-fit: cover;
    background-color: #1a1a1a;
}

.service-content {
    width: 50%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.7;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 30px;
    display: block;
}

.cta-link {
    display: inline-block;
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-link:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

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

.service-compact {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border: 2px solid #1a1a1a;
}

.service-compact h4 {
    font-size: 22px;
    margin-bottom: 15px;
    font-weight: 700;
}

.service-compact p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
}

.price-inline {
    font-size: 20px;
    font-weight: 700;
    color: #d4af37;
}

.cta-banner {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px;
    text-align: center;
}

.cta-banner p {
    font-size: 24px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.btn-primary {
    display: inline-block;
    padding: 18px 40px;
    background-color: #d4af37;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

.btn-primary:hover {
    opacity: 0.8;
}

.testimonial-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.testimonial-layout {
    display: flex;
    gap: 60px;
}

.testimonial {
    flex: 1;
}

blockquote {
    border-left: 4px solid #d4af37;
    padding-left: 30px;
}

blockquote p {
    font-size: 20px;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.7;
}

cite {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    color: #666;
}

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

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    font-weight: 700;
}

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

.approach-list {
    list-style: none;
    margin-top: 30px;
}

.approach-list li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
}

.approach-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #d4af37;
    font-weight: 700;
}

.approach-visual {
    flex: 1;
    background-color: #f5f5f5;
}

.approach-visual img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

.order-section {
    padding: 100px 0;
    background-color: #f5f5f5;
}

.order-section h2 {
    font-size: 48px;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 60px;
    color: #666;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
}

.form-row {
    display: flex;
    gap: 30px;
}

.form-group {
    margin-bottom: 30px;
    flex: 1;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

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

.btn-submit {
    width: 100%;
    padding: 18px;
    background-color: #1a1a1a;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

.disclaimer-section {
    padding: 60px 0;
    background-color: #2c2c2c;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.8;
    color: #999;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

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

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

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

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px 20px 0;
    border-top: 1px solid #444;
    text-align: center;
}

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

.services-page-header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 100px 0 80px;
    text-align: center;
}

.services-page-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.services-page-header p {
    font-size: 20px;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
}

.services-list {
    padding: 100px 0;
    background-color: #ffffff;
}

.service-item {
    display: flex;
    margin-bottom: 60px;
    gap: 0;
    background-color: #f5f5f5;
}

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

.service-image {
    width: 40%;
    background-color: #1a1a1a;
}

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

.service-info {
    width: 60%;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 32px;
    margin-bottom: 20px;
    font-weight: 700;
}

.service-info p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

.about-header {
    background-color: #f5f5f5;
    padding: 100px 0;
}

.about-header h1 {
    font-size: 56px;
    margin-bottom: 30px;
    font-weight: 700;
    text-align: center;
}

.about-intro {
    font-size: 22px;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-content {
    padding: 100px 0;
}

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 38px;
    margin-bottom: 30px;
    font-weight: 700;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-image {
    margin: 60px 0;
    background-color: #1a1a1a;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.contact-header {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 100px 0;
    text-align: center;
}

.contact-header h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-content {
    padding: 100px 0;
}

.contact-grid {
    display: flex;
    gap: 80px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
}

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

.info-block h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    color: #666;
    font-weight: 600;
}

.info-block p {
    font-size: 18px;
    line-height: 1.8;
}

.contact-map {
    flex: 1;
    background-color: #f5f5f5;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.legal-page {
    padding: 100px 0;
}

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

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

.legal-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 700;
}

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

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
}

.thanks-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
}

.thanks-content h1 {
    font-size: 56px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #d4af37;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-content .selected-service {
    font-size: 22px;
    font-weight: 700;
    margin-top: 30px;
    color: #1a1a1a;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 16px 32px;
    background-color: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.back-link:hover {
    background-color: #d4af37;
    color: #1a1a1a;
}

@media (max-width: 1024px) {
    .hero-grid {
        flex-direction: column;
    }

    .hero-sidebar {
        flex-direction: row;
    }

    .column-layout,
    .split-content,
    .contact-grid,
    .service-featured {
        flex-direction: column;
    }

    .service-featured img,
    .service-content,
    .service-image,
    .service-info {
        width: 100%;
    }

    .service-item:nth-child(even) {
        flex-direction: column;
    }

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

    .testimonial-layout {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
    }

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

    .form-row {
        flex-direction: column;
    }

    .hero-sidebar {
        flex-direction: column;
    }

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

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