/* 
* CoachingPro - Estilos CSS
* 2024
*/

/* ===== RESET & BASE ===== */
*, *:before, *:after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 62.5%; /* 1rem = 10px */
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.6rem;
    line-height: 1.6;
    color: #333;
    background-color: #f9f9f9;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: #0056b3;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #007bff;
}

ul, ol {
    list-style: none;
}

/* ===== LAYOUT ===== */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
    font-size: 3.2rem;
    font-weight: 600;
    color: #2c3e50;
}

section {
    padding: 8rem 0;
}

.page-banner {
    background-color: #0077cc;
    color: white;
    text-align: center;
    padding: 6rem 0;
}

.page-banner h2 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.page-banner p {
    font-size: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3.2rem;
}

h3 {
    font-size: 2.4rem;
}

h4 {
    font-size: 2rem;
}

h5 {
    font-size: 1.8rem;
}

h6 {
    font-size: 1.6rem;
}

p {
    margin-bottom: 1.5rem;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 1.2rem 2.4rem;
    border-radius: 30px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1.6rem;
}

.btn-primary {
    background-color: #0077cc;
    color: white;
}

.btn-primary:hover {
    background-color: #0056b3;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #5a6268;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-tertiary {
    background-color: transparent;
    color: #0077cc;
    border: 1px solid #0077cc;
}

.btn-tertiary:hover {
    background-color: rgba(0, 119, 204, 0.1);
    transform: translateY(-3px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1.8rem;
}

/* ===== HEADER & NAVIGATION ===== */
header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
    margin-right: 1.5rem;
}

.logo h1 {
    font-size: 2.4rem;
    margin-bottom: 0;
    color: #0077cc;
}

nav ul {
    display: flex;
    gap: 3rem;
}

nav ul li a {
    color: #333;
    font-weight: 500;
    font-size: 1.8rem;
    padding: 0.5rem 0;
    position: relative;
}

nav ul li a:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #0077cc;
    transition: all 0.3s ease;
}

nav ul li a:hover:after,
nav ul li a.active:after {
    width: 100%;
}

nav ul li a.active {
    color: #0077cc;
    font-weight: 600;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    font-size: 2.4rem;
    color: #333;
}

/* ===== HERO SECTION ===== */
.hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    padding: 15rem 0;
    text-align: center;
}

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

.hero-content h2 {
    font-size: 4.8rem;
    margin-bottom: 2rem;
    color: white;
}

.hero-content p {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

/* ===== FEATURED POSTS ===== */
.featured-posts {
    background-color: #f9f9f9;
}

.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
}

.post-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

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

.post-content {
    padding: 2rem;
}

.post-content h3 {
    margin-bottom: 1.2rem;
    font-size: 2rem;
}

.post-content p {
    margin-bottom: 2rem;
    color: #666;
}

/* ===== 3D BUTTON ===== */
.three-d-button-section {
    padding: 6rem 0;
    background-color: #f0f7ff;
}

.button-container {
    text-align: center;
}

.three-d-button {
    background-color: #0077cc;
    color: white;
    border: none;
    padding: 1.5rem 3rem;
    font-size: 2rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    position: relative;
    box-shadow: 0 8px 0 #005b9f, 0 15px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.1s ease;
}

.three-d-button:active {
    box-shadow: 0 4px 0 #005b9f, 0 8px 10px rgba(0, 0, 0, 0.2);
    transform: translateY(4px);
}

.three-d-button:hover {
    background-color: #0088ee;
}

/* ===== FACTS SECTION ===== */
.facts-section {
    padding: 6rem 0;
    background-color: #0077cc;
}

.facts-box {
    background-color: white;
    border-radius: 15px;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    max-width: 800px;
    margin: 0 auto;
}

.facts-box h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: #0077cc;
}

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

.facts-box ul li {
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    font-size: 1.8rem;
}

.facts-box ul li:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #0077cc;
    font-size: 2.4rem;
}

.facts-box ul li:last-child {
    margin-bottom: 0;
}

/* ===== NEWSLETTER ===== */
.newsletter {
    background-color: #f0f7ff;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 1.5rem;
}

.newsletter p {
    max-width: 600px;
    margin: 0 auto 3rem;
}

.newsletter-form {
    display: flex;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 1.5rem;
    border: 1px solid #ddd;
    border-radius: 30px 0 0 30px;
    font-size: 1.6rem;
}

.newsletter-form button {
    border-radius: 0 30px 30px 0;
    padding: 1.5rem 3rem;
}

/* ===== FOOTER ===== */
footer {
    background-color: #2c3e50;
    color: white;
    padding: 6rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-logo img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
}

.footer-logo h3 {
    font-size: 2.4rem;
    color: white;
    margin-bottom: 1rem;
}

.footer-links h4,
.footer-contact h4,
.footer-social h4 {
    color: white;
    margin-bottom: 2rem;
    font-size: 2rem;
}

.footer-links ul li {
    margin-bottom: 1rem;
}

.footer-links ul li a {
    color: #ddd;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover {
    color: white;
    text-decoration: underline;
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.footer-contact p i {
    margin-right: 1rem;
    color: #0077cc;
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #34495e;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #0077cc;
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 3rem;
    border-top: 1px solid #34495e;
    flex-wrap: wrap;
    gap: 2rem;
}

.copyright p {
    margin-bottom: 0;
}

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

.legal-links a {
    color: #ddd;
}

.legal-links a:hover {
    color: white;
    text-decoration: underline;
}

/* ===== COOKIE BANNER ===== */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #2c3e50;
    padding: 2rem;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content a {
    color: #0077cc;
    text-decoration: underline;
}

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

/* ===== ABOUT PAGE ===== */
.about-intro {
    background-color: white;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.value-card {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-10px);
}

.value-card .icon {
    font-size: 4rem;
    color: #0077cc;
    margin-bottom: 2rem;
}

.value-card h3 {
    margin-bottom: 1.5rem;
}

.our-values {
    background-color: #f0f7ff;
    text-align: center;
}

.team-section {
    background-color: white;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.team-card {
    position: relative;
}

.team-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 2rem;
}

.team-card h3 {
    margin-bottom: 0.5rem;
}

.team-card p {
    color: #666;
}

.team-card p:nth-of-type(1) {
    color: #0077cc;
    font-weight: 600;
    margin-bottom: 1rem;
}

.testimonials {
    background-color: #f0f7ff;
    position: relative;
    overflow: hidden;
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 5rem;
}

.testimonial-slider {
    display: flex;
    gap: 3rem;
    overflow: hidden;
}

.testimonial {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    flex: 1;
    min-width: 300px;
}

.quote {
    margin-bottom: 3rem;
    position: relative;
}

.quote i {
    color: #ddd;
    font-size: 2.4rem;
}

.quote i:first-child {
    position: absolute;
    top: -10px;
    left: -10px;
}

.quote i:last-child {
    position: absolute;
    bottom: -10px;
    right: -10px;
}

.quote p {
    margin: 2rem 0;
    font-style: italic;
}

.author {
    display: flex;
    align-items: center;
}

.author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 2rem;
}

.author-info h4 {
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #666;
    margin-bottom: 0;
}

/* ===== SERVICES PAGE ===== */
.services-intro {
    background-color: white;
}

.intro-content {
    display: flex;
    align-items: center;
    gap: 5rem;
}

.intro-text {
    flex: 1;
}

.intro-image {
    flex: 1;
}

.intro-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.services-grid {
    background-color: #f0f7ff;
}

.services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 4rem;
}

.service-card {
    background-color: white;
    border-radius: 10px;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    font-size: 5rem;
    color: #0077cc;
    margin-bottom: 2rem;
    text-align: center;
}

.service-card h3 {
    text-align: center;
    margin-bottom: 2rem;
}

.service-features {
    margin: 2rem 0;
}

.service-features li {
    margin-bottom: 1rem;
    padding-left: 3rem;
    position: relative;
}

.service-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #0077cc;
}

.service-card .btn {
    display: block;
    width: 100%;
    margin-top: 2rem;
}

.methodology {
    background-color: white;
    text-align: center;
}

.methodology h2 {
    margin-bottom: 5rem;
}

.methodology-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.methodology-step {
    display: flex;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    max-width: 450px;
    margin-bottom: 3rem;
}

.step-number {
    background-color: #0077cc;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.4rem;
    font-weight: 700;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 1rem;
}

.step-content p {
    color: #666;
    margin-bottom: 0;
}

.cta-section {
    background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('images/cta-bg.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
}

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

.cta-content h2 {
    color: white;
    margin-bottom: 2rem;
}

.cta-content p {
    margin-bottom: 3rem;
    font-size: 2rem;
}

/* ===== BLOG PAGE ===== */
.blog-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 5rem;
}

.blog-post {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.post-image {
    height: 100%;
}

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

.post-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    color: #666;
}

.post-title {
    margin-bottom: 2rem;
    font-size: 2.4rem;
}

.post-excerpt {
    margin-bottom: 2rem;
    color: #666;
}

.blog-sidebar {
    position: sticky;
    top: 120px;
    align-self: flex-start;
}

.sidebar-widget {
    background-color: white;
    border-radius: 10px;
    padding: 3rem;
    margin-bottom: 3rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.sidebar-widget h3 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.categories li {
    margin-bottom: 1.5rem;
}

.categories li a {
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #eee;
    color: #333;
}

.categories li a:hover {
    color: #0077cc;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.popular-post {
    display: flex;
    gap: 1.5rem;
}

.popular-post img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-post h4 {
    margin-bottom: 0.5rem;
    font-size: 1.6rem;
}

.popular-post h4 a {
    color: #333;
}

.popular-post h4 a:hover {
    color: #0077cc;
}

.popular-post span {
    color: #666;
    font-size: 1.4rem;
}

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

.subscribe-form input {
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
}

.post-container {
    background-color: #f9f9f9;
    padding: 8rem 0;
}

.blog-post-full {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.post-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem 3rem;
}

.post-header h1 {
    margin-bottom: 2rem;
    font-size: 4rem;
}

.post-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    margin-bottom: 4rem;
}

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

.post-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 4rem;
}

.post-content h2 {
    margin-top: 4rem;
    margin-bottom: 2rem;
    font-size: 2.8rem;
}

.post-content h3 {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2.4rem;
}

.post-content p {
    margin-bottom: 2rem;
    font-size: 1.8rem;
    line-height: 1.8;
}

.post-content ul, .post-content ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.post-content ul li, .post-content ol li {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    line-height: 1.8;
}

.post-content ul {
    list-style-type: disc;
}

.post-content ol {
    list-style-type: decimal;
}

.post-tags, .post-share {
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    border-top: 1px solid #eee;
}

.post-tags h3, .post-share h3 {
    margin-bottom: 2rem;
    font-size: 2rem;
}

.post-tags ul {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.post-tags ul li a {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background-color: #f0f7ff;
    border-radius: 30px;
    color: #0077cc;
    transition: all 0.3s ease;
}

.post-tags ul li a:hover {
    background-color: #0077cc;
    color: white;
}

.social-share {
    display: flex;
    gap: 1.5rem;
}

.social-share a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
}

.social-share a.facebook {
    background-color: #3b5998;
}

.social-share a.twitter {
    background-color: #1da1f2;
}

.social-share a.linkedin {
    background-color: #0077b5;
}

.social-share a.whatsapp {
    background-color: #25d366;
}

.social-share a:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.post-author-bio {
    display: flex;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem 2rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    margin-bottom: 4rem;
}

.author-image img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info h3 {
    font-size: 1.8rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.author-info h4 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.author-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: #0077cc;
    color: white;
    transition: all 0.3s ease;
}

.author-social a:hover {
    transform: translateY(-3px);
    background-color: #0088ee;
}

.related-posts {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 2rem 6rem;
}

.related-posts h3 {
    margin-bottom: 3rem;
    font-size: 2.4rem;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
}

.related-post img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.related-post h4 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.related-post h4 a {
    color: #333;
}

.related-post h4 a:hover {
    color: #0077cc;
}

.related-post span {
    color: #666;
    font-size: 1.4rem;
}

/* ===== CONTACT PAGE ===== */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 5rem;
}

.contact-info {
    background-color: white;
    border-radius: 10px;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.info-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-item .icon {
    width: 50px;
    height: 50px;
    background-color: #0077cc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    flex-shrink: 0;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    font-size: 2rem;
}

.info-item p {
    color: #666;
    margin-bottom: 0;
}

.contact-form-container {
    background-color: white;
    border-radius: 10px;
    padding: 4rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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

.form-group label {
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1.6rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
}

.contact-form button {
    margin-top: 1rem;
}

.map-section {
    background-color: #f0f7ff;
    text-align: center;
}

.map-container {
    height: 450px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ===== MODAL ===== */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 2000;
    overflow: auto;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: white;
    max-width: 500px;
    width: 90%;
    border-radius: 10px;
    position: relative;
    padding: 4rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    text-align: center;
    animation: modalOpen 0.4s ease;
}

@keyframes modalOpen {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 3rem;
    cursor: pointer;
    color: #666;
}

.thank-you-message i {
    font-size: 6rem;
    color: #28a745;
    margin-bottom: 2rem;
}

.thank-you-message h2 {
    margin-bottom: 1.5rem;
}

.thank-you-message p {
    margin-bottom: 3rem;
}

/* ===== RESPONSIVE DESIGN ===== */
@media screen and (max-width: 1024px) {
    html {
        font-size: 58%;
    }
    
    .about-content,
    .intro-content {
        flex-direction: column;
        gap: 4rem;
    }
    
    .about-image,
    .intro-image {
        order: -1;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
}

@media screen and (max-width: 768px) {
    html {
        font-size: 56%;
    }
    
    nav {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: white;
        height: 0;
        overflow: hidden;
        transition: height 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav.active {
        height: auto;
        padding: 2rem 0;
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
    }
    
    .menu-toggle {
        display: block;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input,
    .newsletter-form button {
        width: 100%;
        border-radius: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
    }
    
    .blog-sidebar {
        position: static;
    }
    
    .blog-post {
        grid-template-columns: 1fr;
    }
    
    .post-image {
        height: 200px;
    }
    
    .post-author-bio {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .cookie-content {
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    html {
        font-size: 54%;
    }
    
    .hero-content h2 {
        font-size: 3.6rem;
    }
    
    .hero-content p {
        font-size: 1.8rem;
    }
    
    .testimonial-slider {
        flex-direction: column;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .social-share {
        justify-content: center;
    }
}
