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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

/* Container and Layout */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header and Navigation */
.navbar {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2c5282;
}

.nav-logo img {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #2c5282;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #2c5282;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 120px 0 80px;
    text-align: center;
}

.hero-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-graphic {
    margin: 2rem 0;
}

.banner-image {
    max-width: 600px;
    width: 100%;
    height: auto;
}

.cta-button {
    display: inline-block;
    background-color: #48bb78;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(72, 187, 120, 0.3);
}

.cta-button:hover {
    background-color: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

.cta-button.secondary {
    background-color: transparent;
    border: 2px solid #48bb78;
    color: #48bb78;
}

.cta-button.secondary:hover {
    background-color: #48bb78;
    color: white;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #4299e1 0%, #667eea 100%);
    color: white;
    padding: 120px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.page-icon {
    width: 80px;
    height: 80px;
}

/* Sections */
section {
    padding: 60px 0;
}

.section-intro {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2d3748;
}

h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

/* Grid Layouts */
.features-grid,
.services-grid,
.team-grid,
.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

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

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

/* Cards */
.feature-card,
.service-card,
.team-member,
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.feature-icon,
.service-icon,
.info-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: hue-rotate(210deg) saturate(1.2);
}

.service-card.featured {
    border: 3px solid #48bb78;
    transform: scale(1.05);
}

.service-price {
    font-size: 2rem;
    font-weight: bold;
    color: #48bb78;
    margin: 1rem 0;
}

.service-features {
    text-align: left;
    margin: 1.5rem 0;
}

.service-features li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-btn {
    background-color: #2c5282;
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    display: inline-block;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.service-btn:hover {
    background-color: #2a4365;
}

/* Team Section */
.team-avatar {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    filter: hue-rotate(150deg);
}

.team-role {
    color: #666;
    font-style: italic;
    margin-bottom: 1rem;
}

/* About Preview */
.about-preview {
    background-color: #f7fafc;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-visual {
    text-align: center;
}

.section-graphic {
    width: 120px;
    height: 120px;
    filter: hue-rotate(200deg) saturate(1.1);
}

.section-graphic.large {
    width: 200px;
    height: 200px;
}

.read-more {
    color: #2c5282;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: #2a4365;
}

/* Content Sections */
.content-section {
    padding: 80px 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.content-text h2 {
    text-align: left;
    margin-bottom: 1.5rem;
}

.content-text ul {
    margin: 1rem 0;
}

.content-text li {
    margin: 0.5rem 0;
    padding-left: 1rem;
    position: relative;
}

.content-text li::before {
    content: '•';
    color: #48bb78;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Testimonials */
.testimonials-grid {
    background-color: #f7fafc;
}

.testimonials-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.testimonial-card.featured {
    grid-column: 1 / -1;
    border-left: 5px solid #48bb78;
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    filter: hue-rotate(180deg);
}

.testimonial-info h3 {
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.testimonial-location {
    color: #666;
    font-size: 0.9rem;
}

.testimonial-rating {
    margin-top: 0.25rem;
}

.testimonial-content {
    margin: 1.5rem 0;
    line-height: 1.6;
}

.testimonial-course {
    font-size: 0.9rem;
    color: #2c5282;
    font-weight: 600;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #48bb78;
}

.stat-label {
    color: #666;
    margin-top: 0.5rem;
}

/* Tabs */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 10px 20px;
    border: 2px solid #2c5282;
    background: transparent;
    color: #2c5282;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: #2c5282;
    color: white;
}

.category-content {
    display: none;
}

.category-content.active {
    display: block;
}

.quick-testimonials {
    display: grid;
    gap: 1rem;
}

.quick-testimonial {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #48bb78;
}

.quick-testimonial cite {
    display: block;
    margin-top: 0.5rem;
    color: #666;
    font-style: normal;
    font-size: 0.9rem;
}

/* Blog */
.blog-articles {
    padding: 60px 0;
}

.articles-grid {
    display: grid;
    gap: 3rem;
}

.featured-article {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 3rem;
}

.featured-article .article-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.article-graphic {
    width: 100px;
    height: 100px;
    filter: brightness(0) invert(1);
}

.featured-article .article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

.article-date,
.article-category {
    padding: 0.25rem 0.75rem;
    background-color: #edf2f7;
    border-radius: 15px;
}

.article-category {
    background-color: #48bb78;
    color: white;
}

.articles-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.article-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.article-card .article-image {
    background: linear-gradient(135deg, #4299e1 0%, #667eea 100%);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.article-card .article-content {
    padding: 1.5rem;
}

.article-card h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.category-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

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

.category-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: hue-rotate(210deg);
}

.article-count {
    display: inline-block;
    background-color: #48bb78;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.9rem;
    margin-top: 1rem;
}

/* Newsletter */
.newsletter-signup {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

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

.newsletter-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.newsletter-form {
    margin: 2rem 0;
}

.form-group {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
}

.submit-btn {
    background-color: #48bb78;
    color: white;
    border: none;
    padding: 12px 25px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #38a169;
}

.form-note {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Contact */
.contact-info {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    filter: hue-rotate(210deg);
}

.contact-content h3 {
    margin-bottom: 0.5rem;
}

.contact-content .note {
    font-size: 0.9rem;
    color: #666;
    margin-top: 0.5rem;
}

.contact-form-section {
    background-color: #f7fafc;
    padding: 60px 0;
}

.contact-form {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e2e8f0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c5282;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input {
    width: auto;
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.office-hours table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.office-hours td {
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
}

.office-hours td:first-child {
    font-weight: 600;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0;
    text-align: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    filter: hue-rotate(120deg);
}

.thanks-message {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 3rem;
}

.next-steps {
    margin: 4rem 0;
}

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

.step {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.step-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    filter: hue-rotate(210deg);
}

.contact-reminder {
    background-color: #f7fafc;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1rem 0;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-small-icon {
    width: 20px;
    height: 20px;
    filter: hue-rotate(210deg);
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* Blog Article */
.blog-article {
    padding-top: 80px;
}

.article-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 60px 0;
}

.breadcrumbs {
    margin-bottom: 1rem;
    opacity: 0.8;
}

.breadcrumbs a {
    color: white;
    text-decoration: underline;
}

.article-header .article-meta {
    margin-bottom: 2rem;
}

.article-header .article-meta span {
    background-color: rgba(255,255,255,0.2);
    color: white;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.article-lead {
    font-size: 1.2rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 2rem;
}

.article-hero-image {
    width: 150px;
    height: 150px;
    filter: brightness(0) invert(1);
    margin: 0 auto;
    display: block;
}

.article-content {
    padding: 60px 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.article-body {
    line-height: 1.8;
}

.article-body h2 {
    text-align: left;
    margin: 2rem 0 1rem;
    font-size: 1.8rem;
}

.article-body h3 {
    margin: 1.5rem 0 1rem;
    font-size: 1.3rem;
}

.article-body h4 {
    margin: 1rem 0 0.5rem;
    font-size: 1.1rem;
    color: #2c5282;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body ul,
.article-body ol {
    margin: 1rem 0 1.5rem 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.content-highlight {
    display: flex;
    gap: 1rem;
    background-color: #f0f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2c5282;
    margin: 2rem 0;
}

.highlight-icon {
    width: 40px;
    height: 40px;
    filter: hue-rotate(210deg);
    flex-shrink: 0;
}

.quote-block {
    background-color: #f7fafc;
    border-left: 4px solid #48bb78;
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 0 10px 10px 0;
}

.quote-block blockquote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.quote-block cite {
    font-style: normal;
    color: #666;
    font-weight: 600;
}

.article-cta {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    margin: 3rem 0;
}

.article-cta h3 {
    color: white;
    margin-bottom: 1rem;
}

.article-cta .cta-button {
    background-color: white;
    color: #48bb78;
}

.article-cta .cta-button:hover {
    background-color: #f7fafc;
}

/* Article Sidebar */
.article-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-section {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.sidebar-section h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #2c5282;
}

.info-list {
    list-style: none;
}

.info-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.info-list li:last-child {
    border-bottom: none;
}

.related-articles {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.related-article {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background-color: #f7fafc;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.related-article:hover {
    background-color: #edf2f7;
}

.related-thumb {
    width: 40px;
    height: 40px;
    filter: hue-rotate(210deg);
}

.sidebar-btn {
    background-color: #2c5282;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    display: inline-block;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.sidebar-btn:hover {
    background-color: #2a4365;
}

.article-footer {
    background-color: #f7fafc;
    padding: 3rem 0;
}

.article-navigation {
    display: flex;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.nav-btn {
    background-color: #2c5282;
    color: white;
    padding: 10px 20px;
    border-radius: 20px;
    transition: background-color 0.3s;
}

.nav-btn:hover {
    background-color: #2a4365;
}

.article-share {
    text-align: center;
}

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}

.share-btn {
    background-color: #48bb78;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.share-btn:hover {
    background-color: #38a169;
}

/* Legal Pages */
.legal-content {
    padding: 60px 0;
}

.legal-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    text-align: left;
    margin-bottom: 1.5rem;
    color: #2c5282;
}

.legal-section h3 {
    margin: 1.5rem 0 1rem;
    color: #2d3748;
}

.legal-section h4 {
    margin: 1rem 0 0.5rem;
    color: #4a5568;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1.5rem 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background-color: #f7fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.legal-sidebar .info-box {
    background-color: #f0f9ff;
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid #2c5282;
}

.legal-sidebar .info-box.highlight {
    background-color: #f0fff4;
    border-left-color: #48bb78;
}

.quick-links,
.related-links {
    list-style: none;
}

.quick-links li,
.related-links li {
    margin-bottom: 0.5rem;
}

.quick-links a,
.related-links a {
    color: #2c5282;
    text-decoration: underline;
}

.quick-links a:hover,
.related-links a:hover {
    color: #2a4365;
}

/* Cookie Tables */
.cookie-table {
    overflow-x: auto;
    margin: 1.5rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 12px 15px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #2d3748;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Cookie Controls */
.cookie-controls {
    text-align: center;
    margin: 2rem 0;
}

.cookie-settings-btn,
.cookie-accept-btn,
.cookie-reject-btn {
    background-color: #2c5282;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    margin: 0.5rem;
    transition: background-color 0.3s;
}

.cookie-accept-btn {
    background-color: #48bb78;
}

.cookie-reject-btn {
    background-color: #e53e3e;
}

.cookie-settings-btn:hover {
    background-color: #2a4365;
}

.cookie-accept-btn:hover {
    background-color: #38a169;
}

.cookie-reject-btn:hover {
    background-color: #c53030;
}

.cookie-categories {
    list-style: none;
}

.cookie-categories li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #eee;
}

.cookie-categories li:last-child {
    border-bottom: none;
}

.category-status {
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
}

.category-status.always-on {
    background-color: #e6fffa;
    color: #047857;
}

/* Cookie Banner and Modal */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: white;
    padding: 1.5rem;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
}

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

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

.cookie-btn {
    border: none;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.cookie-btn.primary {
    background-color: #48bb78;
    color: white;
}

.cookie-btn.secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.cookie-btn.tertiary {
    background-color: #2c5282;
    color: white;
}

.cookie-btn.primary:hover {
    background-color: #38a169;
}

.cookie-btn.secondary:hover {
    background-color: white;
    color: #2d3748;
}

.cookie-btn.tertiary:hover {
    background-color: #2a4365;
}

.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    z-index: 10001;
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    margin-bottom: 0;
}

.close {
    font-size: 2rem;
    cursor: pointer;
    color: #999;
}

.close:hover {
    color: #333;
}

.cookie-category {
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
    font-weight: 600;
}

.cookie-category input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-label {
    font-weight: 600;
    color: #2d3748;
}

.cookie-category p {
    margin-top: 0.5rem;
    color: #666;
    font-size: 0.9rem;
}

.modal-footer {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

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

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: white;
}

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

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #cbd5e0;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: white;
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .features-grid,
    .services-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .about-content,
    .content-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-article {
        grid-template-columns: 1fr;
    }
    
    .content-wrapper,
    .legal-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
        order: -1;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .article-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .action-buttons,
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .category-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 1.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    section {
        padding: 40px 0;
    }
    
    .contact-form {
        padding: 2rem 1rem;
    }
    
    .modal-content {
        padding: 1.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-container {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .article-share,
    footer {
        display: none;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.4;
    }
    
    .hero,
    .page-header {
        background: none !important;
        color: black !important;
    }
    
    .article-content {
        padding: 20px 0;
    }
    
    .content-wrapper {
        grid-template-columns: 1fr;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Focus indicators */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid #2c5282;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .feature-card,
    .service-card,
    .article-card {
        border: 2px solid #333;
    }
    
    .cta-button,
    .service-btn {
        border: 2px solid currentColor;
    }
}
