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

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fdfcfa;
}

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

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

.header {
    background-color: #fff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-family: 'Arial', sans-serif;
    font-size: 24px;
    font-weight: bold;
    color: #1a5f7a;
    letter-spacing: 1px;
}

.main-nav {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.main-nav a {
    text-decoration: none;
    color: #2c3e50;
    font-size: 16px;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #1a5f7a;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 5px 12px;
    border: 1px solid #bdc3c7;
    border-radius: 3px;
    background-color: #ecf0f1;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #34495e;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: #3498db;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.cookie-btn {
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

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

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

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

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

.hero-magazine {
    margin-top: 30px;
}

.hero-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-main {
    flex: 2;
    min-width: 300px;
    position: relative;
    background-color: #2c3e50;
    overflow: hidden;
}

.hero-main img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    opacity: 0.8;
}

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: #fff;
}

.hero-overlay h1 {
    font-size: 56px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    font-weight: 300;
    opacity: 0.9;
}

.hero-sidebar {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.featured-card {
    padding: 30px;
    background-color: #fff;
    border-left: 4px solid #1a5f7a;
}

.featured-card.dark {
    background-color: #34495e;
    color: #fff;
    border-left: 4px solid #e67e22;
}

.featured-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

.featured-card p {
    font-size: 16px;
    line-height: 1.6;
}

.intro-magazine {
    padding: 80px 0;
}

.magazine-columns {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.col-main {
    flex: 2;
    min-width: 300px;
}

.col-main h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #1a5f7a;
}

.col-main p {
    font-size: 18px;
    margin-bottom: 25px;
    text-align: justify;
}

.col-main img {
    width: 100%;
    height: auto;
    margin: 30px 0;
    object-fit: cover;
}

.col-side {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.side-module {
    background-color: #f8f9fa;
    padding: 25px;
    border-top: 3px solid #e67e22;
}

.side-module h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.benefit-list li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

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

.side-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.services-feature {
    background-color: #ecf0f1;
    padding: 80px 0;
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.services-magazine-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: #fff;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
}

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

.service-card.accent {
    background-color: #1a5f7a;
    color: #fff;
}

.service-image {
    background-color: #bdc3c7;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card.large .service-image {
    flex: 1;
}

.service-card.large .service-image img {
    height: 100%;
    min-height: 400px;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-content.full {
    padding: 40px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 20px 0;
    padding-top: 15px;
    border-top: 1px solid #ddd;
}

.service-card.accent .service-details {
    border-top-color: rgba(255,255,255,0.3);
}

.duration {
    font-size: 14px;
    color: #7f8c8d;
}

.service-card.accent .duration {
    color: rgba(255,255,255,0.8);
}

.price {
    font-size: 24px;
    font-weight: bold;
    color: #e67e22;
}

.service-card.accent .price {
    color: #f39c12;
}

.cta-btn {
    padding: 12px 30px;
    background-color: #1a5f7a;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-btn:hover {
    background-color: #145a6d;
}

.service-card.accent .cta-btn {
    background-color: #e67e22;
}

.service-card.accent .cta-btn:hover {
    background-color: #d35400;
}

.testimonials-flow {
    padding: 80px 0;
    background-color: #fff;
}

.testimonials-layout {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.testimonial-main {
    flex: 2;
    min-width: 300px;
}

.testimonial-side {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

blockquote {
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 5px solid #1a5f7a;
    font-style: italic;
    font-size: 18px;
}

.testimonial-side blockquote {
    font-size: 16px;
    padding: 20px;
}

cite {
    display: block;
    margin-top: 15px;
    font-style: normal;
    font-weight: bold;
    color: #34495e;
}

.form-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #fff;
}

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

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.form-intro p {
    font-size: 18px;
    opacity: 0.9;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    color: #2c3e50;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #bdc3c7;
    font-size: 16px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 15px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5f7a;
}

.trust-item p {
    font-size: 16px;
}

.footer {
    background-color: #34495e;
    color: #ecf0f1;
    padding: 50px 0 30px;
}

.footer-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #fff;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #3498db;
}

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

.footer-bottom p {
    font-size: 13px;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    opacity: 0.7;
    margin-bottom: 15px;
    line-height: 1.5;
}

.page-hero {
    background-color: #1a5f7a;
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.lead {
    font-size: 20px;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
}

.about-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.about-main {
    flex: 2;
    min-width: 300px;
}

.about-main h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.about-main h3 {
    font-size: 28px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.about-main p {
    font-size: 17px;
    margin-bottom: 20px;
    text-align: justify;
}

.about-main img {
    width: 100%;
    margin: 30px 0;
    object-fit: cover;
}

.about-sidebar {
    flex: 1;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.team-box,
.values-box,
.stats-box {
    padding: 25px;
    background-color: #f8f9fa;
    border-top: 3px solid #e67e22;
}

.team-box h4,
.values-box h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

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

.values-box ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.values-box ul li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
    font-size: 20px;
}

.stats-box {
    background-color: #1a5f7a;
    color: #fff;
}

.stat {
    text-align: center;
    margin-bottom: 20px;
}

.stat-number {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
}

.approach-section {
    padding: 80px 0;
    background-color: #ecf0f1;
}

.approach-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: #2c3e50;
}

.approach-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.approach-card {
    flex: 1;
    min-width: 280px;
    background-color: #fff;
    overflow: hidden;
}

.approach-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.approach-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
}

.approach-card p {
    padding: 0 20px 20px;
    font-size: 15px;
    line-height: 1.6;
}

.services-detail {
    padding: 80px 0;
}

.service-full {
    margin-bottom: 60px;
    background-color: #fff;
    overflow: hidden;
}

.service-full.highlight {
    background-color: #f8f9fa;
    border: 2px solid #1a5f7a;
}

.service-header {
    padding: 30px;
    background-color: #ecf0f1;
}

.service-header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 10px;
}

.service-header h2 {
    font-size: 32px;
    color: #2c3e50;
}

.price-badge {
    background-color: #e67e22;
    color: #fff;
    padding: 10px 20px;
    font-size: 24px;
    font-weight: bold;
}

.service-duration {
    font-size: 16px;
    color: #7f8c8d;
}

.service-body {
    display: flex;
    gap: 40px;
    padding: 40px;
    flex-wrap: wrap;
}

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

.service-body.centered {
    justify-content: center;
}

.service-image-large {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

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

.service-description {
    flex: 1;
    min-width: 300px;
}

.service-description.wide {
    flex: 2;
}

.service-description h3 {
    font-size: 24px;
    margin-bottom: 15px;
    margin-top: 20px;
    color: #1a5f7a;
}

.service-description h3:first-child {
    margin-top: 0;
}

.service-description p {
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.7;
}

.service-description ul,
.service-description ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.service-description li {
    margin-bottom: 10px;
    font-size: 16px;
}

.cta-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.cta-box {
    text-align: center;
    padding: 50px;
    background-color: #1a5f7a;
    color: #fff;
}

.cta-box h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 25px;
}

.cta-btn-large {
    display: inline-block;
    padding: 15px 40px;
    background-color: #e67e22;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.cta-btn-large:hover {
    background-color: #d35400;
}

.contact-content {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a5f7a;
}

.contact-block {
    margin-bottom: 35px;
}

.contact-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
}

.email-display {
    color: #34495e;
    font-weight: normal;
}

.note {
    font-size: 14px;
    color: #7f8c8d;
    margin-top: 10px;
}

.contact-block a {
    color: #1a5f7a;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-visual img {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    object-fit: cover;
}

.info-card {
    background-color: #f8f9fa;
    padding: 25px;
    border-left: 4px solid #e67e22;
}

.info-card h4 {
    font-size: 20px;
    margin-bottom: 15px;
}

.faq-quick {
    list-style: none;
}

.faq-quick li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
}

.faq-quick li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e67e22;
}

.map-section {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.map-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.map-section p {
    font-size: 16px;
    margin-bottom: 25px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: #bdc3c7;
    position: relative;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(255,255,255,0.95);
    padding: 30px;
    text-align: center;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
}

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

.thanks-icon {
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #27ae60;
}

.thanks-message {
    font-size: 20px;
    margin-bottom: 30px;
    color: #34495e;
}

.service-confirmation {
    background-color: #d5f4e6;
    padding: 20px;
    margin-bottom: 40px;
    border-left: 4px solid #27ae60;
}

.service-selected {
    font-size: 18px;
    color: #2c3e50;
}

.next-steps {
    margin: 50px 0;
}

.next-steps h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.steps-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 200px;
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a5f7a;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: bold;
    margin: 0 auto 15px;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.step p {
    font-size: 15px;
    color: #7f8c8d;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px 0;
}

.btn-primary,
.btn-secondary {
    padding: 15px 30px;
    text-decoration: none;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #1a5f7a;
    color: #fff;
}

.btn-primary:hover {
    background-color: #145a6d;
}

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

.btn-secondary:hover {
    background-color: #bdc3c7;
}

.additional-info {
    background-color: #f8f9fa;
    padding: 30px;
    text-align: left;
    margin: 40px 0;
}

.additional-info ul {
    margin-left: 20px;
    margin-top: 15px;
}

.additional-info li {
    margin-bottom: 10px;
}

.additional-info a {
    color: #1a5f7a;
}

.explore-more {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.explore-more h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 40px;
}

.explore-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.explore-card {
    flex: 1;
    min-width: 250px;
    background-color: #fff;
    padding: 30px;
    text-align: center;
}

.explore-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.explore-card p {
    font-size: 15px;
    margin-bottom: 20px;
}

.explore-card a {
    color: #e67e22;
    text-decoration: none;
    font-weight: bold;
}

.explore-card a:hover {
    text-decoration: underline;
}

.legal-content {
    padding: 80px 0;
}

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-intro {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 12px;
    margin-top: 25px;
    color: #2c3e50;
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 15px;
}

.legal-section ul,
.legal-section ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 1.7;
}

.legal-section a {
    color: #1a5f7a;
}

.legal-section a:hover {
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section-title,
    .page-hero h1 {
        font-size: 32px;
    }

    .col-main h2,
    .about-main h2 {
        font-size: 28px;
    }

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

    .service-card.large {
        flex-direction: column;
    }

    .header-content {
        flex-direction: column;
        text-align: center;
    }

    .main-nav {
        justify-content: center;
    }
}