/* Reset & Base Styles */
:root {
    --primary-color: #4CAF50;
    --primary-dark: #388E3C;
    --primary-light: #C8E6C9;
    --secondary-color: #FFC107;
    --text-color: #333333;
    --text-light: #757575;
    --background-color: #FFFFFF;
    --background-light: #F5F5F5;
    --border-color: #E0E0E0;
    --success-color: #4CAF50;
    --error-color: #F44336;
    --warning-color: #FF9800;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

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

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

ul {
    list-style: none;
}

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

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

.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: var(--border-radius);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-size: 16px;
}

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

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

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

.btn-secondary:hover {
    background-color: #FFB300;
    color: var(--text-color);
}

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

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

/* Header & Navigation */
header {
    background-color: var(--background-color);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo img {
    height: 50px;
    width: auto;
}

nav ul {
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 12px;
    border-radius: var(--border-radius);
}

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

nav ul li a.active {
    color: var(--primary-color);
    font-weight: 600;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--background-light);
}

.hero .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
}

.hero h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

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

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

/* Features Section */
.features {
    padding: 80px 0;
}

.features h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

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

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

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

.feature-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.feature-list {
    margin-top: 15px;
}

.feature-list li {
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
}

.feature-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    display: inline-block;
    width: 1em;
    margin-right: 0.5em;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background-color: var(--background-light);
}

.testimonials h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: auto;
    padding: 20px 0;
    scrollbar-width: none;
}

.testimonial-slider::-webkit-scrollbar {
    display: none;
}

.testimonial {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 30px;
    box-shadow: var(--box-shadow);
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

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

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

.testimonial h4 {
    font-weight: 600;
    color: var(--primary-color);
}

/* CTA Section */
.cta {
    padding: 80px 0;
    text-align: center;
    background-color: var(--primary-light);
}

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

.cta p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-logo img {
    height: 50px;
    margin-bottom: 15px;
}

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

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

.footer-links ul li a {
    color: #ccc;
}

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

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

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

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

.footer-info {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-size: 14px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 15px;
    z-index: 9999;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cookie-content p {
    margin-bottom: 10px;
}

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

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

/* Page Header */
.page-header {
    background-color: var(--primary-light);
    padding: 80px 0;
    text-align: center;
}

.page-header.small {
    padding: 40px 0;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

/* About Page */
.about-intro {
    padding: 80px 0;
}

.about-intro .container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.about-content {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-content h2 {
    font-size: 30px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-content p {
    margin-bottom: 30px;
}

.values-list {
    list-style: none;
    margin-bottom: 30px;
}

.values-list li {
    margin-bottom: 15px;
    padding-left: 25px;
    position: relative;
}

.values-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.team-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.team-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.team-section > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

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

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

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

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

.team-member h3 {
    margin: 20px 20px 5px;
    font-size: 20px;
}

.team-member p {
    padding: 0 20px;
    color: var(--text-light);
    margin-bottom: 10px;
}

.team-member .social-icons {
    padding: 0 20px;
    justify-content: flex-start;
}

.timeline {
    padding: 80px 0;
}

.timeline h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

.timeline-items {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-items::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background-color: var(--primary-light);
}

.timeline-item {
    display: flex;
    justify-content: flex-end;
    padding-right: 30px;
    position: relative;
    margin-bottom: 40px;
    width: 50%;
}

.timeline-item:nth-child(even) {
    align-self: flex-end;
    justify-content: flex-start;
    padding-right: 0;
    padding-left: 30px;
}

.timeline-item:nth-child(odd) {
    left: -50%;
}

.timeline-dot {
    width: 16px;
    height: 16px;
    background-color: var(--primary-color);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
    left: -8px;
}

.timeline-content {
    background-color: var(--background-light);
    padding: 20px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

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

.company-info {
    padding: 80px 0;
    background-color: var(--background-light);
}

.company-info h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
}

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

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

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

.info-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;
}

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

/* Register Page */
.register-section {
    padding: 80px 0;
}

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

.register-image {
    flex: 1;
}

.register-form-container {
    flex: 1;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.form-header {
    margin-bottom: 30px;
    text-align: center;
}

.form-header h2 {
    font-size: 28px;
    margin-bottom: 10px;
}

.register-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 2px var(--primary-light);
}

.form-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.form-check input[type="checkbox"] {
    margin-top: 5px;
}

.form-footer {
    margin-top: 20px;
    text-align: center;
}

.pricing-section {
    padding: 80px 0;
    background-color: var(--background-light);
}

.pricing-section h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.pricing-section > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

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

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

.pricing-card.featured {
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--secondary-color);
}

.pricing-badge {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: var(--text-color);
    padding: 8px 15px;
    font-weight: 600;
    font-size: 14px;
    border-bottom-left-radius: var(--border-radius);
}

.pricing-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.pricing-header h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.price {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
}

.price span {
    font-size: 16px;
    font-weight: 400;
    color: var(--text-light);
}

.pricing-features {
    padding: 30px;
}

.pricing-features ul {
    margin-bottom: 30px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.pricing-features li svg {
    flex-shrink: 0;
    color: var(--primary-color);
}

.pricing-features li.disabled {
    color: var(--text-light);
    text-decoration: line-through;
}

.pricing-features li.disabled svg {
    color: var(--text-light);
}

.pricing-footer {
    padding: 0 30px 30px;
    text-align: center;
}

/* FAQ Page */
.faq-section {
    padding: 80px 0;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-category {
    margin-bottom: 50px;
}

.faq-category h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.faq-item {
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: var(--background-light);
    cursor: pointer;
    transition: var(--transition);
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 1000px;
}

.faq-item.active .faq-toggle {
    transform: rotate(180deg);
}

.faq-list {
    margin: 15px 0;
    padding-left: 20px;
}

.faq-list li {
    margin-bottom: 10px;
    position: relative;
}

.faq-contact {
    text-align: center;
    padding: 40px;
    background-color: var(--primary-light);
    border-radius: var(--border-radius);
    margin-top: 50px;
}

.faq-contact h2 {
    font-size: 28px;
    margin-bottom: 15px;
}

.faq-contact p {
    margin-bottom: 20px;
}

/* Blog Page */
.blog-section {
    padding: 80px 0;
}

.blog-container {
    display: flex;
    gap: 40px;
}

.blog-posts {
    flex: 2;
}

.blog-post {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.blog-image {
    flex: 1;
    max-width: 350px;
}

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

.blog-content {
    flex: 2;
    padding: 30px;
}

.blog-meta {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-light);
    font-size: 14px;
}

.blog-content h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

.blog-content h2 a {
    color: var(--text-color);
}

.blog-content h2 a:hover {
    color: var(--primary-color);
}

.blog-content p {
    margin-bottom: 20px;
}

.blog-sidebar {
    flex: 1;
}

.sidebar-widget {
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: var(--box-shadow);
}

.sidebar-widget h3 {
    font-size: 20px;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.sidebar-widget ul li {
    margin-bottom: 10px;
}

.sidebar-widget ul li a {
    display: flex;
    align-items: center;
    color: var(--text-color);
}

.sidebar-widget ul li a:hover {
    color: var(--primary-color);
}

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

.popular-post {
    display: flex;
    gap: 15px;
}

.popular-post-image {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    overflow: hidden;
    border-radius: var(--border-radius);
}

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

.popular-post-content h4 {
    font-size: 16px;
    margin-bottom: 5px;
}

.popular-post-content h4 a {
    color: var(--text-color);
}

.popular-post-content h4 a:hover {
    color: var(--primary-color);
}

.popular-post-content span {
    font-size: 14px;
    color: var(--text-light);
}

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

.newsletter-form input {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    font-size: 16px;
}

.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-cloud a {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--background-color);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}

.tag-cloud a:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Blog Post Page */
.blog-post-content {
    padding: 80px 0;
}

.post-container {
    display: flex;
    gap: 40px;
}

.post-main {
    flex: 2;
}

.post-sidebar {
    flex: 1;
}

.post-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
    color: var(--text-light);
}

.post-featured-image {
    margin-bottom: 30px;
}

.post-text {
    line-height: 1.8;
}

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

.post-text h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary-color);
}

.post-text h3 {
    font-size: 24px;
    margin: 30px 0 15px;
}

.post-text ul, .post-text ol {
    margin: 20px 0;
    padding-left: 40px;
}

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

.post-text img {
    margin: 30px auto;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}

.post-list {
    list-style: none;
    margin: 20px 0;
}

.post-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 10px;
}

.post-list li:before {
    content: "•";
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0;
}

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

.post-tags span {
    font-weight: 600;
}

.post-tags a {
    display: inline-block;
    padding: 5px 12px;
    background-color: var(--background-light);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-light);
    transition: var(--transition);
}

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

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

.post-share span {
    font-weight: 600;
}

.post-author-box {
    display: flex;
    gap: 20px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 30px;
    margin-bottom: 40px;
}

.author-avatar {
    flex-shrink: 0;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.author-info p {
    margin-bottom: 15px;
}

.author-social {
    display: flex;
    gap: 10px;
}

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

.related-posts h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

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

.related-post {
    background-color: var(--background-light);
    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 16px rgba(0, 0, 0, 0.15);
}

.related-post-image {
    height: 150px;
    overflow: hidden;
}

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

.related-post h4 {
    padding: 15px;
    font-size: 16px;
}

.related-post span {
    display: block;
    padding: 0 15px 15px;
    font-size: 14px;
    color: var(--text-light);
}

.post-comments {
    margin-bottom: 40px;
}

.post-comments h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.comments-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}

.comment {
    display: flex;
    gap: 20px;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 20px;
}

.comment-avatar {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.comment-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.comment-content {
    flex-grow: 1;
}

.comment-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.comment-info h4 {
    font-size: 16px;
}

.comment-info span {
    font-size: 14px;
    color: var(--text-light);
}

.comment-actions {
    margin-top: 10px;
}

.comment-actions a {
    font-size: 14px;
    color: var(--primary-color);
}

.comment-form h3 {
    font-size: 24px;
    margin-bottom: 20px;
}

.comment-form form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Contact Page */
.contact-section {
    padding: 80px 0;
}

.contact-container {
    display: flex;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

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

.contact-map {
    height: 400px;
    border-radius: var(--border-radius);
    overflow: hidden;
    margin-top: 30px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.contact-form-container {
    flex: 1;
    background-color: var(--background-light);
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--box-shadow);
}

.contact-form-container h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.contact-form-container > p {
    margin-bottom: 30px;
}

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

.social-icons.small a {
    width: 35px;
    height: 35px;
}

.faq-preview {
    padding: 80px 0;
    background-color: var(--background-light);
}

.faq-preview h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 15px;
}

.faq-preview > p {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px;
}

.faq-preview-items {
    max-width: 800px;
    margin: 0 auto 40px;
}

.faq-preview-item {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: var(--box-shadow);
}

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

.faq-preview-cta {
    text-align: center;
}

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

.modal-content {
    background-color: var(--background-color);
    border-radius: var(--border-radius);
    width: 90%;
    max-width: 500px;
    box-shadow: var(--box-shadow);
    overflow: hidden;
}

.modal-header {
    padding: 20px;
    background-color: var(--primary-color);
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    font-size: 20px;
}

.close-modal {
    font-size: 24px;
    cursor: pointer;
}

.modal-body {
    padding: 30px 20px;
}

.modal-footer {
    padding: 0 20px 20px;
    text-align: right;
}

/* Custom Frame for Images */
.custom-frame {
    position: relative;
    padding: 10px;
    border: 2px dashed var(--primary-color);
    border-radius: calc(var(--border-radius) + 5px);
    background-color: white;
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.custom-frame:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

.custom-frame img {
    border-radius: var(--border-radius);
    width: 100%;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero .container,
    .about-intro .container,
    .contact-container,
    .post-container,
    .blog-container {
        flex-direction: column;
    }
    
    .blog-post {
        flex-direction: column;
    }
    
    .blog-image {
        max-width: 100%;
    }
    
    .hero-content,
    .hero-image,
    .about-content,
    .about-image,
    .blog-posts,
    .blog-sidebar,
    .post-main,
    .post-sidebar,
    .contact-info,
    .contact-form-container {
        width: 100%;
    }
    
    .features-grid,
    .team-grid,
    .pricing-cards,
    .info-cards {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .timeline-item {
        width: 100%;
        padding-right: 0;
        padding-left: 70px;
    }
    
    .timeline-item:nth-child(odd) {
        left: 0;
    }
    
    .timeline-items::before {
        left: 30px;
    }
    
    .timeline-dot {
        left: 22px;
        right: auto;
    }
    
    .timeline-item:nth-child(even) .timeline-dot {
        left: 22px;
    }
}

@media (max-width: 768px) {
    header .container {
        flex-direction: column;
        gap: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .hero h1 {
        font-size: 32px;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .post-author-box {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .author-social {
        justify-content: center;
    }
    
    .comment {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-logo, .footer-social {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .social-icons {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .features h2, 
    .testimonials h2, 
    .cta h2,
    .page-header h1 {
        font-size: 28px;
    }
    
    .btn {
        width: 100%;
    }
    
    .pricing-cards, 
    .features-grid, 
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
}
