* {
    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: #1a2332;
    padding: 1rem 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;
    flex-wrap: wrap;
}

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

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.ad-label {
    background-color: #f39c12;
    color: #1a2332;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 4rem 2rem;
    color: #ffffff;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
}

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

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-button {
    display: inline-block;
    background-color: #f39c12;
    color: #1a2332;
    padding: 1rem 2.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}

.cta-button:hover {
    background-color: #e67e22;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    background-color: #5a6c8f;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

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

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

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

.info-card:hover {
    transform: translateY(-6px);
}

.card-icon {
    width: 100%;
    height: 200px;
    background-color: #e0e4e8;
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.info-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a2332;
}

.info-card p {
    padding: 0 1.5rem 1.5rem;
    color: #5a6c8f;
}

.services-section {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.section-intro {
    text-align: center;
    font-size: 1.2rem;
    color: #5a6c8f;
    margin-bottom: 3rem;
}

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

.service-card {
    flex: 1 1 calc(50% - 1.25rem);
    min-width: 320px;
    background-color: #f8f9fa;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 24px rgba(0,0,0,0.15);
}

.service-image {
    width: 100%;
    height: 250px;
    background-color: #d0d5dd;
}

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

.service-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.service-content p {
    color: #5a6c8f;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

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

.select-service-btn {
    background-color: #667eea;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

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

.select-service-btn.selected {
    background-color: #27ae60;
}

.contact-form-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #2c3e50 0%, #3498db 100%);
    color: #ffffff;
}

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

.form-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    text-align: center;
}

.form-intro p {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.contact-form {
    background-color: rgba(255,255,255,0.1);
    padding: 2.5rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.selected-service-display {
    background-color: rgba(39,174,96,0.3);
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    margin: 0.3rem 0;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid rgba(255,255,255,0.3);
    border-radius: 6px;
    background-color: rgba(255,255,255,0.95);
    color: #2c3e50;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    width: 100%;
    background-color: #f39c12;
    color: #1a2332;
    border: none;
    padding: 1.2rem;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
}

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

.trust-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.trust-section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.trust-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-card {
    flex: 1;
    min-width: 260px;
    max-width: 380px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.trust-card h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #667eea;
}

.trust-card p {
    color: #5a6c8f;
}

.main-footer {
    background-color: #1a2332;
    color: #e8eaed;
    padding: 3rem 2rem 1rem;
}

.footer-columns {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

.footer-col h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-col p {
    margin-bottom: 0.5rem;
    opacity: 0.9;
}

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

.footer-col ul li {
    margin-bottom: 0.6rem;
}

.footer-col ul li a {
    color: #e8eaed;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col ul li a:hover {
    color: #4a9eff;
}

.footer-disclaimer {
    background-color: rgba(255,255,255,0.05);
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a2332;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 16px 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: 250px;
}

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

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

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

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

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

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

.thanks-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

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

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

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

.thanks-content .service-info {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #27ae60;
}

.thanks-content .back-btn {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2.5rem;
    background-color: #667eea;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.thanks-content .back-btn:hover {
    background-color: #5568d3;
    transform: translateY(-2px);
}

.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 4rem 2rem 3rem;
    text-align: center;
}

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

.page-header p {
    font-size: 1.2rem;
    opacity: 0.9;
}

.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: #1a2332;
}

.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: #5a6c8f;
}

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

.page-content ul li {
    margin-bottom: 0.7rem;
    line-height: 1.7;
    color: #5a6c8f;
}

.contact-info-section {
    padding: 5rem 2rem;
}

.contact-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.contact-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.contact-card p {
    margin-bottom: 1rem;
    color: #5a6c8f;
    line-height: 1.7;
}

.contact-card .non-clickable {
    color: #2c3e50;
    font-weight: 600;
}

.about-section {
    padding: 5rem 2rem;
}

.about-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.about-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.about-intro p {
    font-size: 1.2rem;
    color: #5a6c8f;
    max-width: 800px;
    margin: 0 auto;
}

.about-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}

.feature-item {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.feature-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #667eea;
}

.feature-item p {
    color: #5a6c8f;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

    .cookie-content {
        flex-direction: column;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}
