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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1a1a1a;
    text-decoration: none;
}

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

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

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

.ad-notice {
    font-size: 0.85rem;
    color: #888;
    padding: 0.3rem 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem 2rem;
    z-index: 1000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #4CAF50;
    color: white;
}

.cookie-btn.accept:hover {
    background: #45a049;
}

.cookie-btn.reject {
    background: #f5f5f5;
    color: #333;
}

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

.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    padding: 5rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #f8f8f8;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-left p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
    max-width: 550px;
}

.hero-right {
    flex: 1;
    background: #2c2c2c;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background 0.3s;
    align-self: flex-start;
}

.cta-primary:hover {
    background: #333;
}

.story-intro {
    padding: 5rem 2rem;
    background: #ffffff;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: center;
}

.story-text {
    flex: 1.2;
}

.story-text h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.story-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.story-image {
    flex: 1;
}

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

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

.split-layout {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.split-layout.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 1;
}

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

.split-content {
    flex: 1;
}

.split-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.problem-list {
    list-style: none;
    margin: 2rem 0;
}

.problem-list li {
    padding: 1rem 0 1rem 2.5rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

.problem-list li:before {
    content: "×";
    position: absolute;
    left: 0;
    font-size: 1.8rem;
    color: #d32f2f;
    font-weight: bold;
}

.insight-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

.insight-container h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
}

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

.insight-card {
    flex: 1;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.insight-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.insight-card p {
    line-height: 1.7;
    color: #ddd;
}

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

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

.services-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    text-align: center;
}

.services-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 5rem;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.service-item {
    display: flex;
    gap: 4rem;
    align-items: center;
}

.service-item.reverse {
    flex-direction: row-reverse;
}

.service-content {
    flex: 1;
}

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

.service-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-price {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    background: #f8f8f8;
    padding: 1rem 2rem;
    border-radius: 4px;
}

.service-image {
    flex: 1;
    background: #e5e5e5;
}

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

.testimonials {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

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

.testimonials-container h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

.testimonial-cards {
    display: flex;
    gap: 2.5rem;
}

.testimonial {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    font-style: normal;
    font-weight: 600;
    color: #1a1a1a;
}

.cta-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-container h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-container p {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #ddd;
}

.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: #ffffff;
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #f0f0f0;
}

.form-section {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.form-split {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.form-left {
    flex: 1;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #555;
}

.form-right {
    flex: 1;
    background: #ffffff;
    padding: 3rem;
    border-radius: 4px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #1a1a1a;
}

.submit-btn {
    padding: 1.1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

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

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

.disclaimer-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

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

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.footer-column p {
    line-height: 1.7;
    color: #ccc;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

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

.footer-column ul li a:hover {
    color: #ffffff;
}

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

.about-hero {
    padding: 6rem 2rem 4rem;
    background: #f8f8f8;
}

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

.about-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-hero-content p {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
}

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

.story-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-image-left {
    flex: 1;
    background: #e5e5e5;
}

.story-image-left img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

.story-content-right {
    flex: 1;
}

.story-content-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.story-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

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

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

.philosophy-container h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
}

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

.philosophy-item {
    flex: 1 1 45%;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 4px;
}

.philosophy-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.philosophy-item p {
    line-height: 1.7;
    color: #555;
}

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

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

.approach-split.reverse {
    flex-direction: row-reverse;
}

.approach-content {
    flex: 1;
}

.approach-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.approach-image {
    flex: 1;
    background: #e5e5e5;
}

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

.values-section {
    padding: 5rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
}

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

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

.values-list {
    display: flex;
    gap: 3rem;
}

.value-item {
    flex: 1;
    padding: 2rem;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
}

.value-item p {
    line-height: 1.7;
    color: #ddd;
}

.cta-about {
    padding: 5rem 2rem;
    background: #f8f8f8;
}

.cta-about-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-about-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.cta-about-container p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.cta-btn-about {
    display: inline-block;
    padding: 1.1rem 2.5rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    border-radius: 4px;
    transition: background 0.3s;
}

.cta-btn-about:hover {
    background: #333;
}

.services-header {
    padding: 5rem 2rem 3rem;
    background: #f8f8f8;
}

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

.services-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.services-header-content p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
}

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

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-left {
    flex: 1;
    background: #e5e5e5;
}

.service-detail-left img {
    width: 100%;
    height: auto;
    border-radius: 4px;
    object-fit: cover;
}

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

.service-detail-right h2 {
    font-size: 2.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail-right h3 {
    font-size: 1.4rem;
    margin: 1.5rem 0 1rem;
    color: #1a1a1a;
}

.service-detail-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.service-detail-right ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.service-detail-right ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.7rem;
}

.service-price-box {
    background: #f8f8f8;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0 1.5rem;
}

.price-label {
    font-size: 1rem;
    color: #666;
    display: block;
    margin-bottom: 0.5rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
}

.service-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.service-cta:hover {
    background: #333;
}

.services-faq {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

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

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    text-align: center;
    color: #1a1a1a;
}

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

.faq-item {
    background: #ffffff;
    padding: 2rem;
    border-radius: 4px;
}

.faq-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.faq-item p {
    line-height: 1.7;
    color: #555;
}

.contact-header {
    padding: 5rem 2rem 3rem;
    background: #f8f8f8;
}

.contact-header-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-header-content p {
    font-size: 1.2rem;
    color: #555;
}

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

.contact-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 5rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
}

.contact-detail {
    margin-bottom: 2.5rem;
}

.contact-detail h3 {
    font-size: 1.4rem;
    margin-bottom: 0.7rem;
    color: #1a1a1a;
}

.contact-detail p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.email-text {
    font-weight: 600;
    color: #1a1a1a;
}

.note {
    font-size: 0.95rem;
    color: #888;
    margin-top: 1rem;
}

.contact-image {
    flex: 1;
    background: #e5e5e5;
}

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

.contact-approach {
    padding: 4rem 2rem;
    background: #f8f8f8;
}

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

.approach-container h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-container p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.thanks-section {
    padding: 8rem 2rem;
    background: #f8f8f8;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.3rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 4px;
    margin: 2rem 0;
    font-size: 1.1rem;
    color: #1a1a1a;
}

.thanks-info {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2.5rem;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.thanks-btn {
    display: inline-block;
    padding: 1rem 2rem;
    background: #1a1a1a;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background 0.3s;
}

.thanks-btn:hover {
    background: #333;
}

.thanks-btn.secondary {
    background: #f0f0f0;
    color: #1a1a1a;
}

.thanks-btn.secondary:hover {
    background: #e0e0e0;
}

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

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

.legal-container h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.legal-intro {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 2.5rem;
}

.legal-container h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1rem;
    color: #1a1a1a;
}

.legal-container h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a1a1a;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.2rem;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-container ul li {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.7rem;
}

.legal-container a {
    color: #1a1a1a;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #555;
}

.legal-updated {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e5e5;
    font-size: 0.95rem;
    color: #888;
}

@media (max-width: 1024px) {
    .hero-split,
    .story-container,
    .split-layout,
    .service-item,
    .form-split,
    .story-split,
    .approach-split,
    .contact-split,
    .service-detail-item {
        flex-direction: column;
    }

    .insight-grid,
    .testimonial-cards,
    .values-list {
        flex-direction: column;
    }

    .hero-left h1,
    .about-hero-content h1,
    .services-header-content h1,
    .contact-header-content h1,
    .thanks-container h1 {
        font-size: 2.3rem;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .hero-left,
    .about-hero,
    .services-header,
    .contact-header,
    .thanks-section {
        padding: 3rem 1.5rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.8rem;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}