* {
margin: 0;
padding: 0;
box-sizing: border-box;
}

:root {
--primary-color: #1a1a2e;
--secondary-color: #c9a961;
--accent-color: #f4f4f4;
--text-color: #333;
--light-bg: #fafafa;
--dark-bg: #0f0f1e;
--gold: #d4af37;
--shadow: rgba(0, 0, 0, 0.1);
}

body {
font-family: 'Inter', sans-serif;
font-size: 14px;
line-height: 1.6;
color: var(--text-color);
background: #fff;
overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
font-family: 'Playfair Display', serif;
font-weight: 600;
line-height: 1.2;
}

h1 {
font-size: 2.2rem;
}

h2 {
font-size: 1.8rem;
margin-bottom: 1.5rem;
}

h3 {
font-size: 1.3rem;
margin-bottom: 0.8rem;
}

a {
text-decoration: none;
color: inherit;
}

img {
max-width: 100%;
height: auto;
display: block;
}

.container {
max-width: 1200px;
margin: 0 auto;
padding: 0 20px;
}

.privacy-popup {
position: fixed;
bottom: 0;
left: 0;
right: 0;
background: var(--primary-color);
color: white;
padding: 15px;
z-index: 10000;
transform: translateY(100%);
transition: transform 0.3s;
}

.privacy-popup.show {
transform: translateY(0);
}

.privacy-content {
max-width: 1200px;
margin: 0 auto;
display: flex;
align-items: center;
justify-content: space-between;
gap: 15px;
flex-wrap: wrap;
}

.privacy-content p {
flex: 1;
min-width: 250px;
font-size: 13px;
}

.privacy-content a {
color: var(--secondary-color);
text-decoration: underline;
}

.btn-accept {
background: var(--secondary-color);
color: var(--primary-color);
border: none;
padding: 8px 20px;
border-radius: 4px;
cursor: pointer;
font-weight: 500;
font-size: 13px;
transition: all 0.3s;
}

.btn-accept:hover {
background: var(--gold);
}

.header {
background: var(--primary-color);
color: white;
padding: 12px 0;
position: relative;
}

.header-content {
display: flex;
align-items: center;
justify-content: space-between;
}

.logo {
font-family: 'Playfair Display', serif;
font-size: 1.4rem;
font-weight: 700;
color: var(--secondary-color);
}

.nav {
display: flex;
gap: 25px;
}

.nav a {
color: white;
font-size: 13px;
font-weight: 400;
transition: color 0.3s;
padding: 8px 0;
position: relative;
}

.nav a:hover {
color: var(--secondary-color);
}

.nav a::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 0;
height: 2px;
background: var(--secondary-color);
transition: width 0.3s;
}

.nav a:hover::after {
width: 100%;
}

.nav-toggle {
display: none;
background: none;
border: none;
color: white;
font-size: 24px;
cursor: pointer;
}

.hero {
background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-bg) 100%);
color: white;
padding: 80px 0;
text-align: center;
}

.hero-content h1 {
margin-bottom: 20px;
font-size: 2.5rem;
}

.hero-content p {
font-size: 1.1rem;
margin-bottom: 30px;
max-width: 600px;
margin-left: auto;
margin-right: auto;
opacity: 0.9;
}

.btn-primary, .btn-secondary {
display: inline-block;
padding: 12px 30px;
font-size: 14px;
font-weight: 500;
border-radius: 4px;
transition: all 0.3s;
border: 2px solid transparent;
}

.btn-primary {
background: var(--secondary-color);
color: var(--primary-color);
}

.btn-primary:hover {
background: var(--gold);
transform: translateY(-2px);
}

.btn-secondary {
background: transparent;
color: var(--secondary-color);
border-color: var(--secondary-color);
}

.btn-secondary:hover {
background: var(--secondary-color);
color: white;
}

.features {
padding: 60px 0;
background: var(--light-bg);
}

.features h2 {
text-align: center;
margin-bottom: 40px;
}

.features-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}

.feature-card {
background: white;
padding: 25px;
border-radius: 8px;
text-align: center;
transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 30px var(--shadow);
}

.feature-card i {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: 15px;
}

.feature-card h3 {
margin-bottom: 10px;
}

.feature-card p {
font-size: 13px;
color: #666;
}

.showcase {
padding: 60px 0;
}

.showcase-content {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
align-items: center;
}

.showcase-text p {
margin-bottom: 15px;
color: #555;
}

.showcase-text .btn-secondary {
margin-top: 20px;
}

.showcase-image img {
border-radius: 8px;
box-shadow: 0 10px 40px var(--shadow);
}

.process {
padding: 60px 0;
background: var(--primary-color);
color: white;
}

.process h2 {
text-align: center;
color: white;
margin-bottom: 40px;
}

.process-steps {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
gap: 25px;
}

.step {
text-align: center;
padding: 20px;
}

.step-number {
font-family: 'Playfair Display', serif;
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: 15px;
font-weight: 700;
}

.step h3 {
margin-bottom: 10px;
font-size: 1.1rem;
}

.step p {
font-size: 13px;
opacity: 0.85;
}

.testimonials {
padding: 60px 0;
background: var(--light-bg);
}

.testimonials h2 {
text-align: center;
margin-bottom: 40px;
}

.testimonials-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.testimonial {
background: white;
padding: 25px;
border-radius: 8px;
position: relative;
box-shadow: 0 5px 15px var(--shadow);
}

.quote-icon {
font-size: 2rem;
color: var(--secondary-color);
margin-bottom: 10px;
}

.testimonial p {
font-size: 13px;
color: #555;
margin-bottom: 15px;
font-style: italic;
}

.author {
display: flex;
flex-direction: column;
gap: 3px;
}

.author strong {
color: var(--primary-color);
font-size: 14px;
}

.author span {
font-size: 12px;
color: #888;
}

.cta {
padding: 60px 0;
background: linear-gradient(135deg, var(--dark-bg) 0%, var(--primary-color) 100%);
color: white;
text-align: center;
}

.cta-content h2 {
color: white;
margin-bottom: 15px;
}

.cta-content p {
font-size: 1.1rem;
margin-bottom: 25px;
opacity: 0.9;
}

.footer {
background: var(--primary-color);
color: white;
padding: 30px 0 15px;
font-size: 13px;
}

.footer-content {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 25px;
margin-bottom: 20px;
}

.footer-col h4 {
font-size: 15px;
margin-bottom: 12px;
color: var(--secondary-color);
}

.footer-col p, .footer-col a {
color: rgba(255, 255, 255, 0.8);
font-size: 12px;
line-height: 1.8;
display: block;
}

.footer-col a:hover {
color: var(--secondary-color);
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 15px;
text-align: center;
font-size: 12px;
opacity: 0.7;
}

.page-header {
background: var(--primary-color);
color: white;
padding: 50px 0;
text-align: center;
}

.page-header h1 {
margin-bottom: 15px;
}

.page-header p {
font-size: 1.05rem;
opacity: 0.9;
max-width: 700px;
margin: 0 auto;
}

.products {
padding: 60px 0;
}

.products h2 {
text-align: center;
margin-bottom: 40px;
}

.products-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 30px;
}

.product-card {
background: white;
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 20px var(--shadow);
transition: transform 0.3s;
}

.product-card:hover {
transform: translateY(-8px);
}

.product-image {
width: 100%;
height: 200px;
overflow: hidden;
}

.product-image img {
width: 100%;
height: 100%;
object-fit: cover;
}

.product-card h3 {
padding: 20px 20px 10px;
}

.product-card p {
padding: 0 20px;
font-size: 13px;
color: #666;
margin-bottom: 15px;
}

.product-price {
padding: 0 20px;
font-size: 1.5rem;
font-weight: 700;
color: var(--secondary-color);
font-family: 'Playfair Display', serif;
}

.product-quantity {
padding: 0 20px 15px;
font-size: 12px;
color: #888;
}

.product-card .btn-secondary {
margin: 0 20px 20px;
display: inline-block;
}

.finishes {
padding: 60px 0;
background: var(--light-bg);
}

.finishes h2 {
text-align: center;
margin-bottom: 40px;
}

.finishes-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
}

.finish-item {
background: white;
padding: 25px;
border-radius: 8px;
text-align: center;
}

.finish-item i {
font-size: 2.2rem;
color: var(--secondary-color);
margin-bottom: 12px;
}

.finish-item h3 {
margin-bottom: 8px;
font-size: 1.1rem;
}

.finish-item p {
font-size: 13px;
color: #666;
}

.materials {
padding: 60px 0;
}

.materials-content {
max-width: 800px;
margin: 0 auto;
}

.materials-text p {
margin-bottom: 15px;
color: #555;
}

.materials-list {
list-style: none;
margin-top: 20px;
}

.materials-list li {
display: flex;
align-items: center;
gap: 10px;
padding: 10px 0;
font-size: 14px;
}

.materials-list i {
color: var(--secondary-color);
font-size: 1.3rem;
}

.custom-products {
padding: 60px 0;
}

.custom-products h2 {
text-align: center;
margin-bottom: 40px;
}

.custom-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.custom-item {
background: white;
padding: 25px;
border-radius: 8px;
box-shadow: 0 5px 15px var(--shadow);
text-align: center;
transition: transform 0.3s;
}

.custom-item:hover {
transform: translateY(-5px);
}

.custom-item i {
font-size: 2.5rem;
color: var(--secondary-color);
margin-bottom: 15px;
}

.custom-item h3 {
margin-bottom: 10px;
}

.custom-item p {
font-size: 13px;
color: #666;
}

.benefits {
padding: 60px 0;
background: var(--light-bg);
}

.benefits h2 {
text-align: center;
margin-bottom: 40px;
}

.benefits-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
gap: 25px;
}

.benefit-box {
background: white;
padding: 25px;
border-radius: 8px;
border-left: 4px solid var(--secondary-color);
}

.benefit-box h3 {
margin-bottom: 10px;
color: var(--primary-color);
}

.benefit-box p {
font-size: 13px;
color: #666;
}

.applications {
padding: 60px 0;
}

.applications h2 {
text-align: center;
margin-bottom: 40px;
}

.applications-list {
max-width: 900px;
margin: 0 auto;
display: grid;
gap: 20px;
}

.app-item {
background: var(--light-bg);
padding: 25px;
border-radius: 8px;
}

.app-item h3 {
display: flex;
align-items: center;
gap: 10px;
margin-bottom: 10px;
color: var(--primary-color);
}

.app-item i {
color: var(--secondary-color);
font-size: 1.5rem;
}

.app-item p {
font-size: 13px;
color: #666;
}

.contact-section {
padding: 60px 0;
}

.contact-wrapper {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 40px;
}

.contact-form-container h2 {
margin-bottom: 15px;
}

.contact-form-container > p {
margin-bottom: 25px;
color: #666;
font-size: 13px;
}

.contact-form {
display: flex;
flex-direction: column;
gap: 18px;
}

.form-group {
display: flex;
flex-direction: column;
gap: 6px;
}

.form-group label {
font-size: 13px;
font-weight: 500;
color: var(--primary-color);
}

.form-group input, .form-group textarea {
padding: 10px 12px;
border: 1px solid #ddd;
border-radius: 4px;
font-family: 'Inter', sans-serif;
font-size: 13px;
transition: border-color 0.3s;
}

.form-group input:focus, .form-group textarea:focus {
outline: none;
border-color: var(--secondary-color);
}

.checkbox-group {
flex-direction: row;
align-items: flex-start;
}

.checkbox-label {
display: flex;
align-items: flex-start;
gap: 8px;
font-size: 12px;
cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
margin-top: 3px;
cursor: pointer;
}

.checkbox-label a {
color: var(--secondary-color);
text-decoration: underline;
}

.contact-form button {
align-self: flex-start;
}

.contact-info-container {
background: var(--light-bg);
padding: 30px;
border-radius: 8px;
}

.contact-info-box h3 {
margin-bottom: 25px;
}

.info-item {
display: flex;
gap: 15px;
margin-bottom: 20px;
}

.info-item i {
font-size: 1.5rem;
color: var(--secondary-color);
flex-shrink: 0;
}

.info-item strong {
display: block;
font-size: 13px;
margin-bottom: 4px;
color: var(--primary-color);
}

.info-item p {
font-size: 12px;
color: #666;
line-height: 1.6;
}

.map-section {
padding: 60px 0;
background: var(--light-bg);
}

.map-section h2 {
text-align: center;
margin-bottom: 30px;
}

.map-container {
border-radius: 8px;
overflow: hidden;
box-shadow: 0 5px 20px var(--shadow);
}

.faq-section {
padding: 60px 0;
}

.faq-section h2 {
text-align: center;
margin-bottom: 40px;
}

.faq-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 25px;
}

.faq-item {
background: var(--light-bg);
padding: 20px;
border-radius: 8px;
border-left: 3px solid var(--secondary-color);
}

.faq-item h3 {
margin-bottom: 10px;
font-size: 1rem;
color: var(--primary-color);
}

.faq-item p {
font-size: 13px;
color: #666;
}

.thankyou-section, .error-section {
padding: 60px 0;
min-height: calc(100vh - 200px);
display: flex;
align-items: center;
}

.thankyou-content, .error-content {
text-align: center;
max-width: 700px;
margin: 0 auto;
}

.success-icon {
font-size: 4rem;
color: #28a745;
margin-bottom: 20px;
}

.thankyou-content h1 {
margin-bottom: 15px;
color: var(--primary-color);
}

.thankyou-message {
font-size: 1.05rem;
color: #555;
margin-bottom: 15px;
}

.response-time {
font-size: 14px;
color: #888;
margin-bottom: 30px;
}

.next-steps {
background: var(--light-bg);
padding: 30px;
border-radius: 8px;
margin: 30px 0;
}

.next-steps h2 {
font-size: 1.4rem;
margin-bottom: 20px;
}

.steps-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 20px;
}

.step-item {
text-align: center;
}

.step-item i {
font-size: 2.2rem;
color: var(--secondary-color);
margin-bottom: 10px;
}

.step-item p {
font-size: 12px;
color: #666;
}

.thankyou-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
}

.error-number {
font-family: 'Playfair Display', serif;
font-size: 6rem;
font-weight: 700;
color: var(--secondary-color);
margin-bottom: 20px;
}

.error-content h1 {
margin-bottom: 15px;
}

.error-message {
font-size: 1.05rem;
color: #555;
margin-bottom: 10px;
}

.error-suggestion {
font-size: 14px;
color: #888;
margin-bottom: 30px;
}

.error-actions {
display: flex;
gap: 15px;
justify-content: center;
flex-wrap: wrap;
margin-bottom: 40px;
}

.helpful-links {
margin-top: 40px;
}

.helpful-links h2 {
font-size: 1.4rem;
margin-bottom: 20px;
}

.links-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
gap: 15px;
}

.link-card {
background: var(--light-bg);
padding: 20px;
border-radius: 8px;
display: flex;
flex-direction: column;
align-items: center;
gap: 10px;
transition: all 0.3s;
}

.link-card:hover {
background: var(--primary-color);
color: white;
transform: translateY(-3px);
}

.link-card i {
font-size: 2rem;
color: var(--secondary-color);
}

.link-card span {
font-size: 13px;
font-weight: 500;
}

.policy-content {
max-width: 900px;
margin: 0 auto;
padding: 60px 20px;
}

.policy-content h1 {
margin-bottom: 15px;
}

.policy-date {
font-size: 13px;
color: #888;
margin-bottom: 30px;
}

.policy-content h2 {
font-size: 1.5rem;
margin-top: 35px;
margin-bottom: 15px;
color: var(--primary-color);
}

.policy-content h3 {
font-size: 1.2rem;
margin-top: 25px;
margin-bottom: 12px;
color: var(--primary-color);
}

.policy-content p {
margin-bottom: 15px;
color: #555;
line-height: 1.8;
}

.policy-content ul, .policy-content ol {
margin-bottom: 15px;
margin-left: 25px;
}

.policy-content li {
margin-bottom: 8px;
color: #555;
line-height: 1.8;
font-size: 14px;
}

.policy-content a {
color: var(--secondary-color);
text-decoration: underline;
}

@media (max-width: 768px) {
h1 {
font-size: 1.8rem;
}
h2 {
font-size: 1.5rem;
}
.nav {
position: absolute;
top: 100%;
left: 0;
right: 0;
background: var(--primary-color);
flex-direction: column;
padding: 20px;
gap: 15px;
display: none;
z-index: 1001;
}
.nav.active {
display: flex;
}
.nav-toggle {
display: block;
}
.hero-content h1 {
font-size: 2rem;
}
.hero-content p {
font-size: 1rem;
}
.showcase-content {
grid-template-columns: 1fr;
}
.contact-wrapper {
grid-template-columns: 1fr;
}
.footer-content {
grid-template-columns: 1fr;
}
.thankyou-section, .error-section {
min-height: auto;
padding: 40px 0;
}
.error-number {
font-size: 4rem;
}
}

@media (max-width: 480px) {
.container {
padding: 0 15px;
}
h1 {
font-size: 1.6rem;
}
h2 {
font-size: 1.3rem;
}
.hero {
padding: 50px 0;
}
.hero-content h1 {
font-size: 1.7rem;
}
.features, .products, .custom-products, .contact-section, .faq-section {
padding: 40px 0;
}
.process-steps, .steps-grid, .links-grid {
grid-template-columns: 1fr;
}
}
