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

.ad-disclosure {
    background: #f8f9fa;
    padding: 8px 20px;
    text-align: center;
    font-size: 0.85rem;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.navbar {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-menu a:hover {
    color: #3498db;
}

.hero-section {
    position: relative;
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    background: rgba(44, 62, 80, 0.75);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: #ffffff;
    max-width: 800px;
    padding: 2rem;
}

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

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    opacity: 0.95;
}

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

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

.story-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-container p {
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.story-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    margin: 2rem 0;
    border-radius: 8px;
    background-color: #e9ecef;
}

.insight-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.insight-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.insight-visual {
    flex: 1;
}

.insight-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.problem-section {
    padding: 5rem 2rem;
    background: #ecf0f1;
}

.narrow-content {
    max-width: 900px;
    margin: 0 auto;
}

.narrow-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

.problem-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.problem-item {
    background: #ffffff;
    padding: 2rem;
    border-left: 4px solid #e74c3c;
}

.problem-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.problem-item p {
    font-size: 1.1rem;
    color: #34495e;
}

.solution-intro {
    padding: 6rem 2rem;
    background: #ffffff;
}

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

.solution-image {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.solution-text {
    flex: 1;
}

.solution-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.solution-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.benefits-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

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

.benefits-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.benefit-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e9ecef;
}

.benefit-card h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #2c3e50;
}

.benefit-card p {
    font-size: 1rem;
    margin: 0 1.5rem 1.5rem;
    color: #34495e;
}

.testimonial-section {
    padding: 5rem 2rem;
    background: #34495e;
    color: #ffffff;
}

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

.testimonial-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.testimonial-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    margin-bottom: 2rem;
    border-radius: 8px;
}

.testimonial-text {
    font-size: 1.15rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 1rem;
    opacity: 0.9;
    text-align: right;
}

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

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

.services-preview-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    color: #2c3e50;
}

.services-intro {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #34495e;
}

.service-modules {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.module-card {
    display: flex;
    gap: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    align-items: center;
}

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

.module-card img {
    flex: 1;
    width: 50%;
    height: 350px;
    object-fit: cover;
    background-color: #e9ecef;
}

.module-card h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.module-card p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.module-card .price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1.5rem 0;
}

.module-card > div {
    flex: 1;
    padding: 2rem;
}

.select-btn {
    background: #3498db;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-btn:hover {
    background: #2980b9;
}

.form-section {
    padding: 6rem 2rem;
    background: #ecf0f1;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.form-intro {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.selected-service-display {
    background: #d5f4e6;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
    border-left: 4px solid #27ae60;
}

.selected-service-display p {
    font-size: 1rem;
    color: #1e8449;
}

.selected-service-display strong {
    font-size: 1.3rem;
    display: block;
    margin-bottom: 0.5rem;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    font-size: 1rem;
    border: 2px solid #dfe6e9;
    border-radius: 6px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.submit-btn {
    background: #27ae60;
    color: #ffffff;
    border: none;
    padding: 1.2rem 3rem;
    font-size: 1.2rem;
    border-radius: 6px;
    cursor: pointer;
    width: 100%;
    transition: background 0.3s;
}

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

.trust-section {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.trust-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.trust-content p {
    font-size: 1.1rem;
    color: #34495e;
    line-height: 1.8;
}

.disclaimer-section {
    padding: 3rem 2rem;
    background: #f8f9fa;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-text {
    font-size: 0.95rem;
    color: #6c757d;
    line-height: 1.6;
    border-left: 3px solid #95a5a6;
    padding-left: 1.5rem;
}

.footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

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

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

.footer-section p {
    font-size: 0.95rem;
    opacity: 0.9;
}

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

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

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

.footer-section a:hover {
    opacity: 1;
    text-decoration: underline;
}

.references {
    list-style: decimal;
    padding-left: 1.2rem;
}

.references li {
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 1000;
}

.cookie-banner.hidden {
    display: none;
}

.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;
}

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

.btn-accept,
.btn-reject {
    padding: 0.8rem 1.5rem;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 1rem;
    transition: opacity 0.3s;
}

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

.btn-accept:hover {
    opacity: 0.9;
}

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

.btn-reject:hover {
    opacity: 0.9;
}

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

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

.page-hero-content p {
    font-size: 1.3rem;
    opacity: 0.95;
}

.about-content {
    padding: 5rem 2rem;
    background: #ffffff;
}

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

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

.philosophy-content {
    max-width: 1100px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
}

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

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

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.philosophy-item p {
    font-size: 1.05rem;
    color: #34495e;
}

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

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

.approach-image {
    flex: 1;
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.approach-text p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

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

.values-content {
    max-width: 900px;
    margin: 0 auto;
}

.values-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.values-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 1.1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #dee2e6;
    color: #34495e;
    padding-left: 2rem;
    position: relative;
}

.values-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

.services-full {
    padding: 4rem 2rem;
    background: #ffffff;
}

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

.service-detail {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #dee2e6;
    align-items: center;
}

.service-detail:last-child {
    border-bottom: none;
}

.service-detail-image {
    flex: 1;
}

.service-detail-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
    margin: 1rem 0;
}

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.5rem;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.service-detail-content ul li {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.service-cta {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    margin-top: 1rem;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #2980b9;
}

.customization-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.customization-content {
    max-width: 800px;
    margin: 0 auto;
}

.customization-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.customization-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.btn-secondary {
    display: inline-block;
    background: #7f8c8d;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-secondary:hover {
    background: #6c7a7b;
}

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

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.contact-item p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
}

.contact-visual {
    flex: 1;
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    background-color: #e9ecef;
}

.visit-section {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.visit-content {
    max-width: 900px;
    margin: 0 auto;
}

.visit-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.visit-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
}

.thanks-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    margin: 0 auto 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #34495e;
}

.thanks-info {
    margin: 2rem 0;
}

.selected-service-box {
    background: #d5f4e6;
    padding: 1.5rem;
    border-radius: 6px;
    border-left: 4px solid #27ae60;
}

.selected-service-box h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #1e8449;
}

.service-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

.thanks-next h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.next-steps {
    padding-left: 1.5rem;
}

.next-steps li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: #34495e;
}

.thanks-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

.btn-primary {
    display: inline-block;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.btn-primary:hover {
    background: #2980b9;
}

.legal-page {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.legal-container h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.legal-container p {
    font-size: 1.05rem;
    margin-bottom: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.legal-container ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #34495e;
}

.last-updated {
    font-size: 0.95rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    font-size: 0.95rem;
    color: #34495e;
}

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

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

    .insight-content,
    .solution-container,
    .about-container,
    .approach-container,
    .contact-container {
        flex-direction: column;
    }

    .module-card {
        flex-direction: column !important;
    }

    .module-card img {
        width: 100%;
    }

    .benefits-grid,
    .philosophy-grid {
        flex-direction: column;
    }

    .service-detail {
        flex-direction: column;
    }

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