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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.75rem 2rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-cookie-accept {
    background: #ffffff;
    color: #000000;
}

.btn-cookie-accept:hover {
    background: #f0f0f0;
}

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

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

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000000;
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
}

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.ad-label {
    background: #f0f0f0;
    padding: 0.4rem 1rem;
    font-size: 0.85rem;
    border-radius: 4px;
    color: #666666;
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2a2a2a;
}

.hero-image-container 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.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 2rem;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
    max-width: 900px;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-cta {
    background: #ffffff;
    color: #000000;
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    display: inline-block;
}

.hero-cta:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.story-intro {
    padding: 8rem 2rem;
    background: #fafafa;
}

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

.story-content h2 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333333;
}

.visual-block {
    padding: 0;
}

.visual-grid {
    display: flex;
    min-height: 600px;
}

.visual-item {
    flex: 1;
    background-color: #e8e8e8;
}

.visual-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.visual-text {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #1a1a1a;
    color: #ffffff;
}

.visual-text h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.visual-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.immersive-section {
    position: relative;
    height: 70vh;
    min-height: 500px;
}

.immersive-bg {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #3a3a3a;
}

.immersive-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.immersive-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

.immersive-content h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.8);
}

.immersive-content p {
    font-size: 1.4rem;
    font-weight: 300;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.8);
}

.collection-preview {
    padding: 8rem 2rem;
    background: #ffffff;
}

.collection-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.collection-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.collection-header p {
    font-size: 1.2rem;
    color: #666666;
}

.collection-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.collection-card {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 300px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    transition: all 0.3s;
}

.collection-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.card-content p {
    color: #666666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.card-price {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #000000;
}

.btn-select {
    width: 100%;
    padding: 1rem;
    background: #000000;
    color: #ffffff;
    border: none;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-select:hover {
    background: #333333;
}

.btn-select:active {
    transform: scale(0.98);
}

.testimonial-visual {
    padding: 6rem 2rem;
    background: #f9f9f9;
}

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

.testimonial-image {
    flex: 1;
    background-color: #e0e0e0;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

.testimonial-content {
    flex: 1;
}

.testimonial-content blockquote {
    margin-bottom: 3rem;
    padding-left: 2rem;
    border-left: 4px solid #000000;
}

.testimonial-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-content cite {
    font-style: normal;
    font-weight: 600;
    color: #666666;
}

.form-section {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

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

.form-container {
    background: #ffffff;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.form-container > p {
    color: #666666;
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    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: #000000;
}

.btn-submit {
    padding: 1.2rem;
    background: #000000;
    color: #ffffff;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #333333;
}

.btn-submit:active {
    transform: scale(0.98);
}

.trust-section {
    padding: 6rem 2rem;
    background: #fafafa;
}

.trust-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.trust-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #333333;
}

.main-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    gap: 4rem;
    justify-content: space-between;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #cccccc;
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #333333;
    text-align: center;
    color: #888888;
}

.page-container {
    margin-top: 80px;
    min-height: calc(100vh - 400px);
}

.page-header {
    background: #1a1a1a;
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333333;
}

.page-content ul,
.page-content ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.page-content li {
    margin-bottom: 0.5rem;
    line-height: 1.8;
}

.contact-info {
    background: #f9f9f9;
    padding: 3rem;
    margin: 3rem 0;
    border-left: 4px solid #000000;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 1rem;
}

.thanks-container {
    margin-top: 80px;
    min-height: calc(100vh - 400px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
}

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.thanks-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #333333;
}

.thanks-content .service-selected {
    background: #f0f0f0;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 4px;
}

.thanks-content .service-selected strong {
    font-size: 1.3rem;
}

.btn-home {
    display: inline-block;
    margin-top: 2rem;
    padding: 1.2rem 3rem;
    background: #000000;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-home:hover {
    background: #333333;
}

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .nav-links {
        gap: 1rem;
        font-size: 0.9rem;
    }

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

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

    .collection-card {
        flex: 0 1 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

    .form-container {
        padding: 2rem;
    }
}