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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --dark-bg: #1a252f;
    --border-color: #ddd;
    --success-color: #2ecc71;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.main-nav {
    background: var(--primary-color);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.nav-links {
    display: none;
    flex-direction: row;
    gap: 30px;
}

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

.nav-links a:hover {
    color: var(--secondary-color);
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.hero-content {
    max-width: 700px;
    margin-bottom: 40px;
}

.hero-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero-image {
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
}

.cta-primary {
    display: inline-block;
    background: var(--accent-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.cta-secondary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: transform 0.3s, box-shadow 0.3s;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.intro-section {
    background: white;
    padding: 80px 20px;
}

.intro-section h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    line-height: 1.8;
}

.visual-section {
    background: var(--light-bg);
    padding: 60px 20px;
}

.visual-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.visual-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.visual-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s;
}

.visual-item:hover img {
    transform: scale(1.1);
}

.visual-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    padding: 30px 20px;
    color: white;
}

.visual-overlay h3 {
    font-size: 1.5rem;
}

.services-section {
    background: white;
    padding: 80px 20px;
}

.services-section h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.service-card.featured {
    border: 3px solid var(--secondary-color);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--secondary-color);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: bold;
    z-index: 10;
}

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px;
    background: var(--light-bg);
}

.service-header h3 {
    font-size: 1.6rem;
    color: var(--primary-color);
}

.service-price {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--accent-color);
}

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

.service-details {
    padding: 25px;
}

.service-details p {
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-details ul {
    list-style: none;
    margin-bottom: 25px;
}

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

.service-details ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.btn-select-service {
    width: 100%;
    background: var(--secondary-color);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

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

.trust-section {
    background: var(--dark-bg);
    color: white;
    padding: 80px 20px;
}

.trust-section h2 {
    font-size: 2rem;
    margin-bottom: 50px;
    text-align: center;
}

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

.trust-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.trust-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    opacity: 0.5;
}

.trust-item h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.trust-item p {
    line-height: 1.8;
    opacity: 0.9;
}

.testimonials-section {
    background: var(--light-bg);
    padding: 80px 20px;
}

.testimonials-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.testimonials-slider {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.testimonial {
    background: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-author {
    font-weight: bold;
    color: var(--secondary-color);
}

.form-section {
    background: white;
    padding: 80px 20px;
}

.form-section h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--primary-color);
}

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

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    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: var(--secondary-color);
}

.btn-submit {
    width: 100%;
    background: var(--accent-color);
    color: white;
    border: none;
    padding: 18px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

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

.cta-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    color: white;
    padding: 60px 20px;
    text-align: center;
}

.cta-banner h2 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.cta-banner p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.main-footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.footer-column h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--secondary-color);
}

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

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

.footer-column a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: white;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.sticky-cta a {
    display: block;
    background: var(--accent-color);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    box-shadow: 0 5px 25px rgba(0,0,0,0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.sticky-cta a:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-bg);
    color: white;
    padding: 20px;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 1001;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
}

.cookie-content a {
    color: var(--secondary-color);
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: opacity 0.3s;
}

.btn-accept {
    background: var(--success-color);
    color: white;
}

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

.btn-accept:hover,
.btn-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 80px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.content-section {
    background: white;
    padding: 60px 20px;
}

.content-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.values-section {
    background: var(--light-bg);
    padding: 80px 20px;
}

.values-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.values-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.team-section {
    background: white;
    padding: 80px 20px;
}

.team-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
    margin-top: 40px;
}

.team-member {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.team-member img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-member h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--primary-color);
}

.member-role {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.approach-section {
    background: var(--light-bg);
    padding: 80px 20px;
}

.approach-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.approach-steps {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.step h3 {
    font-size: 1.3rem;
    color: var(--primary-color);
}

.stats-section {
    background: var(--primary-color);
    color: white;
    padding: 60px 20px;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
}

.pricing-section {
    background: white;
    padding: 80px 20px;
}

.pricing-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-table {
    max-width: 1200px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.pricing-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
}

.pricing-row.header {
    background: var(--primary-color);
    color: white;
    font-weight: bold;
    display: none;
}

.pricing-row.featured-row {
    background: #e3f2fd;
    border: 2px solid var(--secondary-color);
}

.pricing-cell {
    padding: 5px 0;
}

.pricing-cell.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: var(--accent-color);
}

.btn-small {
    padding: 10px 20px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

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

.badge-small {
    background: var(--secondary-color);
    color: white;
    padding: 3px 10px;
    border-radius: 10px;
    font-size: 0.8rem;
    margin-left: 10px;
}

.details-section {
    background: var(--light-bg);
    padding: 80px 20px;
}

.detail-block {
    background: white;
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.detail-block h3 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 20px;
}

.detail-block img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 20px;
}

.detail-block ul {
    list-style: none;
    margin-top: 20px;
}

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

.detail-block ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
    font-size: 1.2rem;
}

.faq-section {
    background: white;
    padding: 80px 20px;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.contact-info-section {
    background: white;
    padding: 60px 20px;
}

.contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
}

.contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

.info-note {
    margin-top: 15px;
    font-size: 0.95rem;
    color: #666;
    font-style: italic;
}

.map-section {
    background: var(--light-bg);
    padding: 60px 20px;
}

.map-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.map-placeholder {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: bold;
}

.map-directions {
    max-width: 800px;
    margin: 40px auto 0;
}

.map-directions h3 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-directions ul {
    list-style: none;
}

.map-directions ul li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.map-directions ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-reasons-section {
    background: white;
    padding: 60px 20px;
}

.contact-reasons-section h2 {
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.reason-item h3 {
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.team-contact-section {
    background: var(--light-bg);
    padding: 60px 20px;
}

.team-contact-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.team-contact-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 40px auto 0;
}

.team-contact-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.team-contact-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.team-contact-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.team-contact-card .role {
    color: var(--secondary-color);
    font-weight: bold;
    margin-bottom: 15px;
}

.team-contact-card a {
    color: var(--secondary-color);
    text-decoration: none;
}

.thanks-section {
    background: white;
    padding: 80px 20px;
    text-align: center;
}

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

.thanks-section h1 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.service-info {
    background: var(--light-bg);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    display: none;
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-timeline {
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.timeline-item {
    display: flex;
    gap: 20px;
}

.timeline-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
}

.timeline-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.thanks-actions {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto 60px;
}

.btn-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
    text-align: center;
}

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

.btn-secondary {
    display: inline-block;
    background: white;
    color: var(--secondary-color);
    padding: 15px 30px;
    border: 2px solid var(--secondary-color);
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--secondary-color);
    color: white;
}

.contact-reminder {
    background: var(--light-bg);
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    margin: 0 auto;
}

.contact-reminder h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-reminder a {
    color: var(--secondary-color);
    text-decoration: none;
}

.legal-page {
    background: white;
    padding: 80px 20px;
}

.legal-intro {
    color: #666;
    font-style: italic;
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.legal-page ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-page p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.included-section {
    background: var(--light-bg);
    padding: 60px 20px;
}

.included-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.included-item {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.included-item h3 {
    color: var(--secondary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

@media (min-width: 768px) {
    .nav-links {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .hero-section {
        flex-direction: row;
        text-align: left;
        justify-content: space-between;
        gap: 50px;
    }

    .hero-content {
        flex: 1;
    }

    .hero-image {
        flex: 1;
        max-width: 500px;
    }

    .visual-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .visual-item {
        flex: 1 1 calc(33.333% - 20px);
    }

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 15px);
    }

    .trust-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .trust-item {
        flex: 1 1 calc(50% - 20px);
    }

    .form-row {
        flex-direction: row;
    }

    .form-group {
        flex: 1;
    }

    .footer-container {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-column {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }

    .values-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .value-card {
        flex: 1 1 calc(50% - 15px);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 27px);
    }

    .stats-grid {
        flex-direction: row;
    }

    .stat-item {
        flex: 1;
    }

    .pricing-row {
        flex-direction: row;
        align-items: center;
    }

    .pricing-row.header {
        display: flex;
    }

    .pricing-cell {
        flex: 1;
        text-align: center;
    }

    .contact-grid {
        flex-direction: row;
    }

    .contact-card {
        flex: 1;
    }

    .team-contact-grid {
        flex-direction: row;
    }

    .team-contact-card {
        flex: 1;
    }

    .thanks-actions {
        flex-direction: row;
        max-width: 600px;
    }

    .included-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .included-item {
        flex: 1 1 calc(50% - 15px);
    }
}

@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .service-card {
        flex: 1 1 calc(33.333% - 20px);
    }

    .approach-steps {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .step {
        flex: 1 1 calc(33.333% - 20px);
    }
}