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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: #d4d4d4;
    background-color: #0a0a0a;
    background-image: linear-gradient(180deg, #0a0a0a 0%, #1a1a1a 100%);
}

header {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    color: #d4d4d4;
    padding: 1.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.8);
    border-bottom: 1px solid #2a2a2a;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    width: 50px;
    height: 50px;
    filter: brightness(0.9) contrast(1.2);
    opacity: 0.95;
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    color: #c4b5a0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

nav a {
    color: #c4b5a0;
    text-decoration: none;
    transition: all 0.3s;
    font-weight: 300;
    letter-spacing: 1px;
    border-bottom: 1px solid transparent;
}

nav a:hover {
    color: #ffffff;
    border-bottom: 1px solid #c4b5a0;
}

.hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    border-bottom: 2px solid #2a2a2a;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.75);
    background: linear-gradient(180deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    padding: 2rem;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 400;
    text-shadow: 3px 3px 8px rgba(0,0,0,0.9);
    color: #c4b5a0;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 300;
    color: #d4d4d4;
    text-shadow: 2px 2px 6px rgba(0,0,0,0.8);
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    color: #c4b5a0;
    text-decoration: none;
    border-radius: 3px;
    transition: all 0.3s;
    border: 1px solid #4a4a4a;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 1px;
    font-family: 'Georgia', 'Times New Roman', serif;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.btn:hover {
    background: linear-gradient(135deg, #4a4a4a 0%, #3a3a3a 100%);
    border-color: #c4b5a0;
    color: #ffffff;
    box-shadow: 0 6px 15px rgba(0,0,0,0.7);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    border: 2px solid #c4b5a0;
    color: #c4b5a0;
}

.btn-secondary:hover {
    background: rgba(196, 181, 160, 0.1);
    color: #ffffff;
}

.section {
    padding: 4rem 0;
    border-bottom: 1px solid #1a1a1a;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #c4b5a0;
    font-weight: 400;
    letter-spacing: 2px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    transition: all 0.3s;
    border: 1px solid #2a2a2a;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.8);
    border-color: #3a3a3a;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #c4b5a0;
    font-weight: 400;
    letter-spacing: 1px;
}

.service-card p {
    color: #b4b4b4;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.service-card ul {
    color: #a4a4a4;
    line-height: 1.8;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #c4b5a0;
    font-weight: 400;
    letter-spacing: 1px;
}

.about-text p {
    margin-bottom: 1rem;
    color: #b4b4b4;
    line-height: 1.8;
}

.about-image img {
    width: 100%;
    border-radius: 5px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.7);
    border: 1px solid #2a2a2a;
    filter: brightness(0.85) contrast(1.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #c4b5a0;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #3a3a3a;
    border-radius: 3px;
    font-size: 1rem;
    font-family: inherit;
    background-color: #1a1a1a;
    color: #d4d4d4;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #c4b5a0;
    background-color: #0f0f0f;
    box-shadow: 0 0 10px rgba(196, 181, 160, 0.2);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-info {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 2rem;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    margin-bottom: 2rem;
    border: 1px solid #2a2a2a;
}

.contact-info h3 {
    margin-bottom: 1rem;
    color: #c4b5a0;
    font-weight: 400;
    letter-spacing: 1px;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: #b4b4b4;
}

.legal-content {
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    padding: 3rem;
    border-radius: 5px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.6);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid #2a2a2a;
}

.legal-content h2 {
    color: #c4b5a0;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 1px;
}

.legal-content h3,
.legal-content h4 {
    color: #b4a593;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-weight: 400;
}

.legal-content p,
.legal-content ul {
    color: #a4a4a4;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.legal-content ul {
    margin-left: 2rem;
}

.legal-content a {
    color: #c4b5a0;
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-content a:hover {
    color: #ffffff;
}

footer {
    background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
    color: #b4b4b4;
    padding: 3rem 0;
    margin-top: 4rem;
    border-top: 2px solid #2a2a2a;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #c4b5a0;
    font-weight: 400;
    letter-spacing: 1px;
}

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

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

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

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

.footer-section p {
    color: #a4a4a4;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #2a2a2a;
    color: #7a7a7a;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    color: #d4d4d4;
    padding: 1.5rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.8);
    z-index: 1000;
    display: none;
    border-top: 2px solid #2a2a2a;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

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

.cookie-content a:hover {
    color: #ffffff;
}

.success-message {
    background: linear-gradient(135deg, #2a4a2a 0%, #1a3a1a 100%);
    color: #b4d4b4;
    padding: 1rem;
    border-radius: 3px;
    margin-bottom: 1rem;
    text-align: center;
    border: 1px solid #3a5a3a;
}

.error-message {
    background: linear-gradient(135deg, #4a2a2a 0%, #3a1a1a 100%);
    color: #d4b4b4;
    padding: 1rem;
    border-radius: 3px;
    margin-bottom: 1rem;
    text-align: center;
    border: 1px solid #5a3a3a;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul {
        gap: 1rem;
        justify-content: center;
    }
    
    .hero h2 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}
