* {
    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: #2c3e50;
    background-color: #ffffff;
}

.main-nav {
    background-color: #1a1a2e;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.brand {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e94560;
}

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

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

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

.ad-notice {
    color: #ffd700;
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 4px;
}

.hero-section {
    display: flex;
    min-height: 85vh;
    align-items: center;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.hero-content {
    flex: 1;
    padding: 4rem;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    color: #d1d5db;
    max-width: 600px;
}

.cta-primary {
    display: inline-block;
    background-color: #e94560;
    color: #ffffff;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image {
    flex: 1;
    position: relative;
    min-height: 600px;
    background-color: #16213e;
}

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

.intro-cards {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

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

.card-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.info-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.info-card p {
    color: #5a6c7d;
    line-height: 1.7;
}

.services-showcase {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.services-showcase h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #1a1a2e;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

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

.service-image {
    flex: 1;
    background-color: #e5e7eb;
    min-height: 350px;
}

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

.service-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #1a1a2e;
}

.service-content p {
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.select-service {
    align-self: flex-start;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    padding: 0.9rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.select-service:hover {
    background-color: #e94560;
    transform: translateY(-2px);
}

.form-section {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.form-wrapper h2 {
    font-size: 2.4rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.form-wrapper > p {
    color: #5a6c7d;
    margin-bottom: 2.5rem;
}

.contact-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: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid #e5e7eb;
    border-radius: 6px;
    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: #e94560;
}

.submit-btn {
    background-color: #e94560;
    color: #ffffff;
    border: none;
    padding: 1.1rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background-color: #d63651;
    transform: translateY(-2px);
}

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

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1;
    min-width: 250px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #e94560;
}

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

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

.footer-section p {
    color: #d1d5db;
    line-height: 1.7;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.cookie-btn {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-btn.reject {
    background-color: #4b5563;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #374151;
}

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #16213e 0%, #1a1a2e 100%);
}

.thanks-content {
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 12px;
    text-align: center;
    max-width: 600px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.thanks-content h1 {
    font-size: 2.8rem;
    color: #1a1a2e;
    margin-bottom: 1.5rem;
}

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

.thanks-content .service-name {
    font-weight: 700;
    color: #e94560;
}

.page-header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

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

.page-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a2e;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.page-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.page-content ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.contact-page {
    padding: 4rem 2rem;
}

.contact-info {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h2 {
    font-size: 2.4rem;
    margin-bottom: 2rem;
    color: #1a1a2e;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.info-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #1a1a2e;
}

.info-item p {
    color: #5a6c7d;
    line-height: 1.7;
}

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}