:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --bg-color: #ffffff;
    --bg-secondary: #f3f4f6;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --error-color: #ef4444;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

.hp-header {
    background: #fff;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.hp-navigation {
    padding: 1rem 0;
}

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

.hp-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-color);
}

.hp-logo-img {
    width: 50px;
    height: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.hp-logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.hp-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.hp-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-color);
    transition: var(--transition);
}

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

.hp-nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 6px;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hp-nav-link:hover, .hp-nav-link.hp-active {
    background: var(--primary-color);
    color: #fff;
}

.hp-welcome-banner {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 1rem;
    text-align: center;
}

.hp-welcome-text {
    color: #fff;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hp-main-content {
    min-height: 60vh;
}

.hp-hero-section {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(30, 64, 175, 0.95) 100%), url('images/1.jpg');
    background-size: cover;
    background-position: center;
    padding: 80px 20px;
    text-align: center;
    color: #fff;
}

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

.hp-hero-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hp-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hp-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
}

.hp-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hp-intro-section {
    padding: 80px 20px;
}

.hp-intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hp-section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.hp-intro-description {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.hp-intro-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
}

.hp-features-section {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

.hp-text-center {
    text-align: center;
    justify-content: center;
}

.hp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.hp-feature-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-align: center;
}

.hp-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hp-feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hp-feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.hp-feature-text {
    color: var(--text-light);
    line-height: 1.7;
}

.hp-cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.hp-cta-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.hp-cta-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.hp-cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    color: var(--primary-color);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.hp-contact-preview {
    padding: 80px 20px;
}

.hp-contact-box {
    background: var(--bg-secondary);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.hp-contact-preview-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.hp-contact-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin: 2rem 0;
}

.hp-contact-info-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--text-light);
}

.hp-footer {
    background: #1f2937;
    color: #fff;
    padding: 60px 20px 20px;
}

.hp-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

.hp-footer-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-footer-text {
    color: #9ca3af;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.hp-footer-registration {
    color: #9ca3af;
    font-size: 0.9rem;
}

.hp-footer-links {
    list-style: none;
}

.hp-footer-links li {
    margin-bottom: 0.75rem;
}

.hp-footer-links a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

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

.hp-footer-contact {
    list-style: none;
}

.hp-footer-contact li {
    color: #9ca3af;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 1.5rem;
    text-align: center;
    color: #9ca3af;
}

.hp-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -4px 6px -1px rgba(0, 0, 0, 0.1);
    padding: 1.5rem;
    z-index: 1000;
    display: none;
}

.hp-cookie-banner.hp-show {
    display: block;
}

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

.hp-cookie-text h4 {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

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

.hp-cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.hp-cookie-btn {
    padding: 10px 20px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hp-cookie-accept {
    background: var(--success-color);
    color: #fff;
}

.hp-cookie-settings {
    background: var(--text-light);
    color: #fff;
}

.hp-cookie-decline {
    background: var(--error-color);
    color: #fff;
}

.hp-cookie-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.hp-cookie-settings-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hp-cookie-settings-modal.hp-show {
    display: flex;
}

.hp-cookie-modal-content {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    max-width: 500px;
    width: 90%;
}

.hp-cookie-option {
    margin: 1.5rem 0;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 8px;
}

.hp-cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    cursor: pointer;
}

.hp-cookie-description {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hp-cookie-modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.hp-cookie-save {
    background: var(--primary-color);
    color: #fff;
}

.hp-cookie-close {
    background: var(--text-light);
    color: #fff;
}

.hp-page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 20px;
    text-align: center;
    color: #fff;
}

.hp-page-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.hp-page-subtitle {
    font-size: 1.25rem;
    opacity: 0.95;
}

.hp-blog-section {
    padding: 80px 20px;
}

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

.hp-blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hp-blog-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hp-blog-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.hp-blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.hp-blog-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hp-blog-content {
    padding: 1.5rem;
}

.hp-blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.hp-blog-date, .hp-blog-category {
    display: flex;
    align-items: center;
    gap: 4px;
}

.hp-blog-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-blog-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.hp-blog-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition);
}

.hp-blog-link:hover {
    gap: 10px;
}

.hp-about-intro {
    padding: 80px 20px;
}

.hp-about-text {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1rem;
}

.hp-team-section {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

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

.hp-team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.hp-team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.hp-team-image {
    height: 300px;
    overflow: hidden;
}

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

.hp-team-info {
    padding: 1.5rem;
}

.hp-team-name {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-team-position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.hp-team-bio {
    color: var(--text-light);
    line-height: 1.7;
}

.hp-values-section {
    padding: 80px 20px;
}

.hp-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.hp-value-card {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
}

.hp-value-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.hp-value-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.hp-value-text {
    color: var(--text-light);
    line-height: 1.7;
}

.hp-contact-section {
    padding: 80px 20px;
}

.hp-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.hp-contact-intro {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hp-contact-details {
    margin-top: 2rem;
}

.hp-contact-detail-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.hp-contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.hp-contact-detail-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.hp-contact-detail-content p {
    color: var(--text-light);
}

.hp-contact-detail-content a {
    color: var(--primary-color);
    text-decoration: none;
}

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

.hp-contact-form {
    background: var(--bg-secondary);
    padding: 2rem;
    border-radius: 12px;
}

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

.hp-form-label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.hp-form-input, .hp-form-textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
}

.hp-form-input:focus, .hp-form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.hp-form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
}

.hp-submit-button {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.hp-submit-button:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

.hp-map-section {
    padding: 80px 20px;
    background: var(--bg-secondary);
}

.hp-map-container {
    margin-top: 2rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hp-success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1001;
}

.hp-success-modal.hp-show {
    display: flex;
}

.hp-success-modal-content {
    background: #fff;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    max-width: 500px;
    width: 90%;
}

.hp-success-icon {
    font-size: 4rem;
    color: var(--success-color);
    margin-bottom: 1rem;
}

.hp-success-modal-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.hp-modal-close-btn {
    margin-top: 1.5rem;
    padding: 12px 32px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.hp-post-article {
    padding: 40px 20px 80px;
}

.hp-breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hp-breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 4px;
}

.hp-post-title {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.hp-post-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.95rem;
    color: var(--text-light);
    flex-wrap: wrap;
}

.hp-post-author, .hp-post-date, .hp-post-reading-time, .hp-post-category {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hp-post-featured-image {
    margin: 2rem 0;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.hp-post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.hp-post-intro {
    font-size: 1.3rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
    padding-left: 1rem;
    border-left: 4px solid var(--primary-color);
}

.hp-post-content h2 {
    font-size: 2rem;
    margin: 2.5rem 0 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.hp-post-content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.hp-post-content p {
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.hp-post-footer {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.hp-post-tags {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
}

.hp-tag-label {
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 6px;
}

.hp-tag {
    background: var(--bg-secondary);
    color: var(--primary-color);
    padding: 6px 14px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.hp-tag:hover {
    background: var(--primary-color);
    color: #fff;
}

.hp-back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--primary-color);
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: var(--transition);
}

.hp-back-to-blog:hover {
    background: var(--secondary-color);
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .hp-menu-toggle {
        display: flex;
    }

    .hp-nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        flex-direction: column;
        background: #fff;
        box-shadow: var(--shadow);
        padding: 2rem;
        transition: var(--transition);
    }

    .hp-nav-menu.hp-active {
        left: 0;
    }

    .hp-hero-title, .hp-page-title, .hp-post-title {
        font-size: 2rem;
    }

    .hp-section-title {
        font-size: 1.75rem;
    }

    .hp-intro-grid, .hp-contact-grid {
        grid-template-columns: 1fr;
    }

    .hp-features-grid {
        grid-template-columns: 1fr;
    }

    .hp-footer-grid {
        grid-template-columns: 1fr;
    }

    .hp-blog-grid {
        grid-template-columns: 1fr;
    }

    .hp-values-grid {
        grid-template-columns: 1fr;
    }

    .hp-cookie-content {
        flex-direction: column;
    }

    .hp-cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

    .hp-contact-info-grid {
        grid-template-columns: 1fr;
    }
}