/* Global Styles and Variables */
:root {
    --primary-color: #3a6ea5;
    --secondary-color: #ff6b6b;
    --accent-color: #6b47b8;
    --text-color: #333333;
    --light-text: #ffffff;
    --dark-text: #222222;
    --light-bg: #f8f9fa;
    --dark-bg: #2c3e50;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --error-color: #dc3545;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 6px;
    --container-width: 1200px;
    --header-height: 80px;
    --footer-bg: #1a1a1a;
    --font-main: 'Roboto', 'Helvetica Neue', Arial, sans-serif;
    --font-heading: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-color);
    line-height: 1.6;
    background-color: #fff;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    font-size: 16px;
}

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

p {
    margin-bottom: 1.2em;
}

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

a:hover {
    color: var(--accent-color);
}

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

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

button, .btn {
    cursor: pointer;
    font-family: var(--font-main);
    font-weight: 500;
    transition: var(--transition);
}

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

/* Header */
header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: var(--header-height);
}

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

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

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

nav {
    display: flex;
    align-items: center;
}

.nav-links {
    display: flex;
    list-style: none;
    margin: 0;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    color: var(--dark-text);
    font-weight: 500;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
}

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

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

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

/* Hero Section */
.hero {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px 5%;
    background-color: var(--light-bg);
}

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

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-text);
}

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

.hero-image {
    flex: 1;
    max-width: 500px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    transition: var(--transition);
}

.btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    color: white;
}

/* Featured Posts Section */
.featured-posts {
    padding: 80px 5%;
}

.featured-posts h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.post-card {
    background-color: #fff;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

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

.post-info {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    position: relative;
}

.post-info h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.post-info p {
    color: var(--text-color);
    flex-grow: 1;
}

.read-more {
    align-self: flex-start;
    color: var(--primary-color);
    font-weight: 600;
    margin-top: 15px;
}

.read-more:hover {
    color: var(--accent-color);
}

/* Blog Posts Page */
.blog-container {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.blog-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.blog-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.blog-posts {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

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

.post-image {
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    position: relative;
}

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

.post-content {
    flex: 2;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.post-meta {
    display: flex;
    margin-bottom: 10px;
    gap: 20px;
    font-size: 0.9rem;
    color: #777;
}

.post-date, .post-category {
    display: flex;
    align-items: center;
}

.post-category {
    background-color: #f0f0f0;
    padding: 3px 10px;
    border-radius: 15px;
}

.post-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.post-content p {
    margin-bottom: 20px;
    flex-grow: 1;
}

/* Portfolio Page */
.portfolio-container {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.portfolio-header {
    text-align: center;
    margin-bottom: 40px;
}

.portfolio-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.portfolio-header p {
    font-size: 1.2rem;
    color: var(--text-color);
    max-width: 700px;
    margin: 0 auto;
}

.portfolio-categories {
    margin-bottom: 40px;
}

.category-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-button {
    padding: 8px 20px;
    background-color: var(--light-bg);
    border: none;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    transition: var(--transition);
    cursor: pointer;
}

.filter-button:hover, .filter-button.active {
    background-color: var(--secondary-color);
    color: white;
}

.portfolio-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    height: 280px;
    cursor: pointer;
}

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

.item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 20px;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item:hover .item-overlay {
    opacity: 1;
}

.item-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: white;
}

.item-overlay p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.portfolio-cta {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.portfolio-cta h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

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

/* About Page */
.about-container {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.about-image {
    flex: 1;
    max-width: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.about-intro {
    flex: 2;
}

.about-intro h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.about-intro p {
    font-size: 1.1rem;
    margin-bottom: 15px;
}

.about-story {
    margin-bottom: 60px;
}

.about-story h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

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

.story-text {
    flex: 3;
}

.story-text p {
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.story-image {
    flex: 2;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

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

.photography-approach h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.approach-cards {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.approach-card {
    flex: 1;
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
}

.approach-card:hover {
    transform: translateY(-5px);
}

.card-icon {
    margin-bottom: 20px;
    color: var(--accent-color);
}

.approach-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.approach-card p {
    font-size: 0.95rem;
    color: var(--text-color);
}

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

.team-section h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
}

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

.team-member {
    text-align: center;
}

.team-member img {
    width: 100%;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
    box-shadow: var(--box-shadow);
}

.team-member h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.team-member p {
    color: var(--text-color);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.about-testimonials {
    margin-top: 60px;
}

.awards-section {
    margin-bottom: 60px;
}

.awards-section h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.awards-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.award {
    display: flex;
    align-items: center;
    background-color: #fff;
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    min-width: 300px;
}

.award-icon {
    margin-right: 15px;
    color: var(--accent-color);
}

.award-details h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.award-details p {
    font-size: 0.9rem;
    color: var(--text-color);
}

/* Contact Page */
.contact-container {
    padding: 60px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

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

.contact-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-content {
    display: flex;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-form-container {
    flex: 3;
}

.contact-form-container h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.contact-form {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-main);
    font-size: 1rem;
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
    font-weight: normal;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: var(--border-radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-submit:hover {
    background-color: var(--accent-color);
}

.contact-info {
    flex: 2;
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    margin-right: 15px;
    color: var(--primary-color);
}

.info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.info-content p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-map {
    margin-bottom: 60px;
}

.contact-map h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.map-container {
    height: 450px;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

/* Blog Post Single Page */
.post-container {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.blog-post-single {
    background-color: #fff;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    padding: 40px;
    margin-bottom: 60px;
}

.post-header {
    margin-bottom: 30px;
}

.post-header h2 {
    font-size: 2.2rem;
    margin: 15px 0;
}

.post-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-image {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 10px;
}

.post-featured-image {
    margin-bottom: 30px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.post-featured-image img {
    width: 100%;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.7;
}

.post-content h3 {
    font-size: 1.6rem;
    margin: 30px 0 20px;
}

.post-content h4 {
    font-size: 1.3rem;
    margin: 25px 0 15px;
}

.post-content ul, .post-content ol {
    margin-bottom: 20px;
}

.post-content li {
    margin-bottom: 10px;
}

.post-inline-image {
    margin: 30px 0;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.image-caption {
    text-align: center;
    font-size: 0.9rem;
    color: #666;
    margin-top: 10px;
}

.post-questions {
    margin-top: 40px;
    padding: 20px;
    background-color: var(--light-bg);
    border-radius: var(--border-radius);
}

.post-questions h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.post-tags {
    margin-top: 40px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
}

.post-tags span {
    font-weight: 600;
    color: var(--text-color);
}

.post-tags a {
    background-color: var(--light-bg);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.9rem;
    color: var(--text-color);
}

.post-tags a:hover {
    background-color: var(--secondary-color);
    color: white;
}

.post-share {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.post-share span {
    font-weight: 600;
    color: var(--text-color);
}

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

.share-buttons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: var(--transition);
}

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

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

.share-pinterest {
    background-color: #bd081c;
    color: white;
}

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

.share-buttons a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
    color: white;
}

.related-posts {
    margin-bottom: 60px;
}

.related-posts h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

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

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

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

.related-post h4 {
    padding: 15px 15px 5px;
    font-size: 1.1rem;
}

.related-post a {
    display: inline-block;
    margin: 0 15px 15px;
    color: var(--primary-color);
    font-weight: 600;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 5%;
    background-color: var(--light-bg);
    margin: 60px 0;
}

.testimonials h2, .testimonials h3 {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2rem;
}

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

.testimonial {
    background-color: #fff;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
}

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

.client {
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin-right: 15px;
}

.client span {
    font-weight: 600;
    color: var(--dark-text);
}

/* Statistics Section */
.statistics {
    padding: 60px 5%;
    text-align: center;
}

.statistics h2 {
    margin-bottom: 40px;
    font-size: 2rem;
}

.chart-container {
    max-width: 800px;
    margin: 0 auto 20px;
    height: 400px;
}

.chart-description {
    font-size: 0.9rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: #fff;
    padding: 60px 5% 20px;
    margin-top: auto;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin-bottom: 15px;
}

.footer-logo h3 {
    color: white;
    font-size: 1.3rem;
    margin-bottom: 10px;
}

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

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
}

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

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.footer-contact p i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.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%;
    transition: var(--transition);
    color: white;
}

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

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

.legal-links {
    margin-top: 10px;
}

.legal-links a {
    color: rgba(255, 255, 255, 0.6);
    margin: 0 10px;
    font-size: 0.85rem;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin: 20px 0;
}

.btn-accept, .btn-customize, .btn-decline {
    padding: 8px 20px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.btn-customize {
    background-color: #f8f9fa;
    color: #333;
}

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

.cookie-more {
    font-size: 0.9rem;
}

.cookie-more a {
    color: var(--secondary-color);
    text-decoration: underline;
}

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

.modal-content {
    background-color: #fff;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: center;
    position: relative;
    max-width: 500px;
    width: 90%;
}

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

.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.checkmark {
    width: 80px;
    height: 80px;
    margin: 20px auto;
    display: block;
}

.checkmark-circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--success-color);
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark-check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    stroke-width: 3;
    stroke: var(--success-color);
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

/* New Tag */
.new-tag {
    background-color: var(--secondary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 1;
}

.post-image .new-tag {
    top: 15px;
    right: 15px;
}

.post-meta .new-tag {
    position: static;
    margin-left: 10px;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .hero {
        flex-direction: column;
        padding: 40px 5%;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .hero-content p {
        margin: 0 auto 30px;
    }

    .approach-cards {
        flex-direction: column;
    }

    .about-header, .story-content {
        flex-direction: column;
        align-items: center;
    }

    .about-image, .story-image {
        max-width: 100%;
        margin-bottom: 30px;
    }

    .testimonial-slider {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 20px 5%;
        height: auto;
    }

    .logo-container {
        margin-bottom: 20px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }

    .nav-links li {
        margin: 5px 15px;
    }

    .blog-post {
        flex-direction: column;
    }

    .post-image {
        max-width: 100%;
    }

    .footer-container {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-contact p {
        justify-content: center;
    }

    .social-icons {
        justify-content: center;
    }

    .post-share {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .hero-content h2, .blog-header h2, .portfolio-header h2, .post-header h2 {
        font-size: 1.8rem;
    }

    .hero-content p, .blog-header p, .portfolio-header p {
        font-size: 1rem;
    }

    .post-grid, .related-posts-grid {
        grid-template-columns: 1fr;
    }

    .portfolio-gallery {
        grid-template-columns: 1fr;
    }

    .blog-post-single {
        padding: 20px;
    }
}
