/* Base Styles & Variables */
:root {
    --primary-color: #e06c9f;
    --primary-dark: #c0477e;
    --primary-light: #ffd1e8;
    --secondary-color: #7e4a8c;
    --accent-color: #d19292;
    --text-color: #333333;
    --text-light: #666666;
    --background-color: #ffffff;
    --background-light: #f9f5f7;
    --background-dark: #e7e0e4;
    --success-color: #4caf50;
    --warning-color: #ff9800;
    --error-color: #f44336;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --max-width: 1200px;
    --section-padding: 60px 20px;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Open Sans', Arial, sans-serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    margin-bottom: 0.5em;
    line-height: 1.3;
    color: var(--text-color);
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1em;
}

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

button, .btn-primary, .btn-secondary, .btn-tertiary {
    cursor: pointer;
    border: none;
    border-radius: var(--border-radius);
    padding: 12px 24px;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
    text-align: center;
}

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

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

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
}

.btn-tertiary:hover {
    background-color: var(--background-dark);
    color: var(--text-color);
}

ul, ol {
    margin-left: 1.5em;
    margin-bottom: 1.5em;
}

/* Layout Containers */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: var(--section-padding);
}

/* Header & Navigation */
header {
    background-color: var(--background-color);
    box-shadow: var(--box-shadow);
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.logo-container h1 {
    font-size: 1.5rem;
    margin-bottom: 0;
    color: var(--primary-color);
}

nav ul {
    display: flex;
    list-style-type: none;
    margin: 0;
}

nav li {
    margin-left: 30px;
}

nav a {
    color: var(--text-color);
    font-weight: 600;
    padding: 8px 0;
    position: relative;
}

nav a:hover {
    color: var(--primary-color);
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

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

nav a.active {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    padding: 80px 30px;
    background-color: var(--background-light);
}

.hero-content {
    flex: 1;
    padding-right: 30px;
}

.hero-content h1 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--text-light);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    max-width: 100%;
    height: auto;
}

/* Features Section */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: var(--section-padding);
}

.feature-card {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--box-shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* For Beginners Section */
.for-beginners {
    background-color: var(--background-light);
    padding: var(--section-padding);
    border-radius: var(--border-radius);
    margin: 40px 30px;
}

.for-beginners h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.beginners-content {
    display: flex;
    align-items: center;
    gap: 40px;
}

.beginners-text {
    flex: 1;
}

.beginners-text p {
    margin-bottom: 20px;
}

.beginners-text ul {
    margin-bottom: 30px;
}

.beginners-image {
    flex: 1;
}

.beginners-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

/* Recent Posts Section */
.recent-posts {
    padding: var(--section-padding);
}

.recent-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

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

.post-card {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

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

.post-card h3 {
    padding: 20px 20px 10px;
    font-size: 1.3rem;
}

.post-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.read-more {
    display: inline-block;
    margin: 0 20px 20px;
    font-weight: 600;
    color: var(--primary-color);
    position: relative;
}

.read-more::after {
    content: '→';
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover::after {
    margin-left: 10px;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Subscription Section */
.subscription {
    background-color: var(--primary-light);
    padding: var(--section-padding);
    text-align: center;
    border-radius: var(--border-radius);
    margin: 40px 30px;
}

.subscription h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.subscription p {
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscription-form {
    max-width: 500px;
    margin: 0 auto;
}

.subscription-form form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.subscription-form input {
    flex: 1;
    padding: 12px;
    border: 2px solid var(--background-color);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
}

.subscription-form input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.subscriber-count {
    font-size: 0.9rem;
    color: var(--primary-dark);
}

.subscriber-count span {
    font-weight: bold;
    font-size: 1.1rem;
}

/* Footer */
footer {
    background-color: var(--text-color);
    color: white;
    padding: 60px 30px 30px;
}

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

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

.footer-logo .logo {
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
}

.footer-logo h3 {
    color: white;
    margin-bottom: 5px;
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-links h4,
.footer-legal h4,
.footer-contact h4,
.footer-social h4 {
    color: white;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-links ul,
.footer-legal ul {
    list-style-type: none;
    margin: 0;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 10px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover,
.footer-legal a:hover {
    color: white;
}

.footer-contact address {
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.7);
}

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

.registration {
    margin-top: 15px;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
}

.social-icons {
    display: flex;
    gap: 15px;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--background-color);
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

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

.cookie-content p {
    margin-bottom: 20px;
    text-align: center;
    max-width: 800px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-more-info {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Blog Page Styles */
.blog-page {
    padding: 40px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.blog-header {
    text-align: center;
    margin-bottom: 50px;
}

.blog-header h1 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.blog-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.blog-container {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.blog-post {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    display: flex;
    flex-direction: column;
}

.post-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-post:hover .post-image img {
    transform: scale(1.05);
}

.post-content {
    padding: 30px;
}

.post-content h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.post-meta {
    display: flex;
    gap: 20px;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.post-content h3 {
    margin-top: 30px;
    color: var(--primary-color);
}

/* Services Page Styles */
.services-page {
    padding: 40px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h1 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.services-header p {
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.service-category {
    display: flex;
    flex-direction: column;
    margin-bottom: 80px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.service-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

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

.service-details {
    padding: 30px;
}

.service-details h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.service-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.service-option {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.service-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

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

.price {
    font-weight: bold;
    font-size: 1.2rem;
    margin: 15px 0;
    color: var(--primary-dark);
}

.service-features {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.service-features li {
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

.service-category .btn-primary {
    align-self: flex-start;
    margin-top: 20px;
}

.faq-section {
    margin: 60px 0;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary-dark);
}

.faq-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

.faq-item {
    background-color: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    cursor: pointer;
}

.faq-item:hover {
    box-shadow: var(--box-shadow);
}

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

.faq-item p {
    color: var(--text-light);
    margin-bottom: 0;
}

.booking-cta {
    text-align: center;
    background-color: var(--primary-light);
    padding: 60px 30px;
    border-radius: var(--border-radius);
    margin-top: 60px;
}

.booking-cta h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.booking-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* About Page Styles */
.about-page {
    padding: 40px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.about-intro {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 60px;
}

.about-text {
    flex: 1;
}

.about-text h1 {
    color: var(--primary-dark);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.our-approach {
    margin-bottom: 60px;
}

.our-approach h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.approach-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.approach-column {
    text-align: center;
    padding: 30px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.approach-column:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow);
}

.approach-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.meet-team {
    margin-bottom: 60px;
}

.meet-team h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.team-member {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.team-member img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.team-member h3 {
    padding: 20px 20px 5px;
    color: var(--primary-dark);
}

.team-member p {
    padding: 0 20px;
    margin-bottom: 10px;
}

.team-member p:first-of-type {
    font-weight: bold;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 10px;
    padding: 0 20px 20px;
}

.social-links a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: var(--primary-light);
    color: var(--primary-color);
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

.credentials {
    margin-bottom: 60px;
}

.credentials h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

.credentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.credential-item {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

.credential-icon {
    width: 60px;
    height: 60px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

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

.testimonials {
    margin-bottom: 60px;
    background-color: var(--background-light);
    padding: 60px 30px;
    border-radius: var(--border-radius);
}

.testimonials h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 40px;
}

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

.testimonial-content {
    background-color: white;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    position: relative;
    margin-bottom: 30px;
}

.testimonial-content::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 15px 15px 0;
    border-style: solid;
    border-color: white transparent transparent;
}

.testimonial-content p {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 0;
}

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

.cta-section {
    text-align: center;
    background-color: var(--primary-light);
    padding: 60px 30px;
    border-radius: var(--border-radius);
}

.cta-section h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Contact Page Styles */
.contact-page {
    padding: 40px 20px;
    max-width: var(--max-width);
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    color: var(--primary-dark);
    margin-bottom: 10px;
}

.contact-header p {
    color: var(--text-light);
}

.contact-info-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.contact-form-section {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.contact-form-section h2 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
}

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

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

.form-group label {
    margin-bottom: 5px;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--background-dark);
    border-radius: var(--border-radius);
    font-family: var(--font-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-checkbox {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
}

.form-checkbox input {
    margin-top: 5px;
}

.contact-details-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.contact-card h2 {
    color: var(--primary-dark);
    margin-bottom: 25px;
    text-align: center;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

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

.contact-info p {
    margin-bottom: 5px;
}

.contact-hours {
    font-size: 0.9rem;
    color: var(--text-light);
}

.social-connect {
    margin-top: 30px;
    text-align: center;
}

.social-connect h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.location-map {
    background-color: var(--background-light);
    padding: 30px;
    border-radius: var(--border-radius);
}

.location-map h3 {
    color: var(--primary-dark);
    margin-bottom: 15px;
    text-align: center;
}

.map-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.map-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.map-container .btn-secondary {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.faq-quick-section {
    margin-top: 60px;
}

.faq-quick-section h2 {
    text-align: center;
    color: var(--primary-dark);
    margin-bottom: 30px;
}

.faq-quick-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.faq-quick-item {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: var(--border-radius);
}

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

.faq-quick-item p {
    margin-bottom: 0;
    font-size: 0.95rem;
}

.faq-more-link {
    text-align: center;
    margin-top: 30px;
}

/* Thank You Modal */
.thank-you-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: relative;
    background-color: var(--background-color);
    margin: 15% auto;
    padding: 30px;
    border-radius: var(--border-radius);
    max-width: 500px;
    text-align: center;
    box-shadow: var(--box-shadow);
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-light);
}

.modal-icon {
    width: 80px;
    height: 80px;
    background-color: var(--primary-light);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.modal-content h2 {
    color: var(--primary-dark);
    margin-bottom: 15px;
}

.modal-content p {
    margin-bottom: 25px;
}

/* Responsive Styles */
@media (max-width: 1100px) {
    .contact-info-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 900px) {
    .hero {
        flex-direction: column;
        gap: 40px;
    }
    
    .hero-content {
        padding-right: 0;
    }

    .beginners-content {
        flex-direction: column;
    }
    
    .about-intro {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 15px;
    }
    
    .logo-container {
        margin-bottom: 15px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav li {
        margin: 5px 15px;
    }
    
    .features, 
    .post-grid, 
    .service-options, 
    .approach-columns, 
    .team-grid, 
    .credentials-grid, 
    .faq-container, 
    .faq-quick-grid {
        grid-template-columns: 1fr;
    }
    
    .subscription-form form {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo {
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    h2 {
        font-size: 1.7rem;
    }
    
    .hero-content h1 {
        font-size: 2.2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .post-image {
        height: 250px;
    }
    
    .modal-content {
        width: 90%;
        padding: 20px;
    }
}
