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

:root {
    --primary-color: #2c5aa0;
    --secondary-color: #1e3a5f;
    --accent-color: #4a90e2;
    --text-color: #333333;
    --text-light: #666666;
    --bg-color: #ffffff;
    --bg-light: #f8f9fa;
    --border-color: #e0e0e0;
    --success-color: #28a745;
    --warning-color: #ffc107;
    --danger-color: #dc3545;
}

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

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

.ak-header {
    background-color: var(--bg-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.ak-header .ak-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.ak-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

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

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

.ak-navigation {
    display: flex;
    gap: 30px;
}

.ak-navigation a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s ease;
}

.ak-navigation a:hover,
.ak-navigation a.ak-nav-active {
    color: var(--primary-color);
}

.ak-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    color: white;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

.ak-cookie-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.ak-cookie-buttons {
    display: flex;
    gap: 15px;
    margin-top: 15px;
    flex-wrap: wrap;
}

.ak-cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.ak-btn-customize {
    background-color: var(--accent-color);
    color: white;
}

.ak-btn-decline {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.ak-privacy-link {
    color: white;
    text-decoration: underline;
    margin-left: 15px;
}

.ak-hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 80px 0;
    text-align: center;
}

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

.ak-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
}

.ak-hero-description {
    max-width: 800px;
    margin: 0 auto 2rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.ak-cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.ak-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

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

.ak-section-heading {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

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

.ak-feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

.ak-feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

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

.ak-countdown-section {
    padding: 60px 0;
    background-color: var(--secondary-color);
    color: white;
}

.ak-countdown-display {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.ak-countdown-block {
    text-align: center;
    background-color: rgba(255,255,255,0.1);
    padding: 20px 30px;
    border-radius: 10px;
}

.ak-countdown-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
}

.ak-countdown-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.ak-poll-section {
    padding: 80px 0;
}

.ak-poll-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.ak-poll-question {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.ak-poll-option {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ak-poll-option:hover {
    border-color: var(--accent-color);
    background-color: var(--bg-light);
}

.ak-poll-option input[type="radio"] {
    margin-right: 10px;
}

.ak-poll-submit {
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.ak-poll-results {
    margin-top: 30px;
}

.ak-poll-result-item {
    margin-bottom: 20px;
}

.ak-poll-bar {
    width: 100%;
    height: 30px;
    background-color: var(--bg-light);
    border-radius: 5px;
    margin: 10px 0;
    overflow: hidden;
}

.ak-poll-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.5s ease;
}

.ak-poll-percentage {
    font-weight: 600;
    color: var(--primary-color);
}

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

.ak-info-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.ak-info-text p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.ak-img-responsive {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ak-footer {
    background-color: var(--secondary-color);
    color: white;
    padding: 60px 0 20px;
}

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

.ak-footer-column h4 {
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.ak-footer-column a {
    display: block;
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

.ak-footer-column a:hover {
    color: white;
}

.ak-footer-reg {
    font-size: 0.9rem;
    opacity: 0.8;
}

.ak-footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

.ak-page-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 60px 0;
    text-align: center;
}

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

.ak-page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
}

.ak-blog-section {
    padding: 60px 0;
}

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

.ak-blog-card {
    background-color: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

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

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

.ak-blog-content {
    padding: 25px;
}

.ak-blog-date {
    color: var(--text-light);
    font-size: 0.9rem;
    display: block;
    margin-bottom: 10px;
}

.ak-blog-content h2 {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.ak-blog-content h2 a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.ak-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    margin-top: 10px;
    transition: color 0.3s ease;
}

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

.ak-about-intro {
    padding: 60px 0;
}

.ak-about-content {
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}

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

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

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

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

.ak-team-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.ak-team-card img {
    width: 100%;
    max-width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
}

.ak-team-card h3 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.ak-team-role {
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.ak-values-section {
    padding: 60px 0;
}

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

.ak-value-item {
    text-align: center;
    padding: 30px;
}

.ak-value-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.ak-value-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.ak-contact-section {
    padding: 60px 0;
}

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

.ak-contact-info {
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 10px;
}

.ak-contact-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.ak-contact-icon {
    font-size: 2rem;
}

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

.ak-contact-item a {
    color: var(--text-color);
    text-decoration: none;
}

.ak-contact-item a:hover {
    color: var(--primary-color);
}

.ak-contact-form-wrapper {
    background-color: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

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

.ak-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: var(--text-color);
}

.ak-form-group input,
.ak-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.ak-submit-btn {
    padding: 15px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.ak-map-section {
    padding: 60px 0;
    background-color: var(--bg-light);
}

.ak-map-placeholder {
    text-align: center;
}

.ak-map-text {
    margin-top: 20px;
    font-size: 1.1rem;
    color: var(--text-light);
}

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

.ak-modal.ak-show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.ak-modal-content {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    max-width: 500px;
    text-align: center;
    position: relative;
}

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

.ak-modal-btn {
    margin-top: 20px;
    padding: 12px 30px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
}

.ak-post-article {
    background-color: white;
}

.ak-post-header {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 60px 0 40px;
}

.ak-post-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.ak-post-date {
    display: block;
    margin-bottom: 10px;
    opacity: 0.9;
}

.ak-post-meta {
    opacity: 0.9;
}

.ak-post-featured {
    max-width: 1200px;
    margin: -40px auto 0;
    padding: 0 20px;
}

.ak-post-featured img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.ak-post-content {
    padding: 60px 0;
}

.ak-post-content .ak-container {
    max-width: 900px;
}

.ak-post-content h2 {
    color: var(--primary-color);
    margin-top: 40px;
    margin-bottom: 20px;
    font-size: 2rem;
}

.ak-post-content h3 {
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.ak-post-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    font-size: 1.05rem;
}

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

.ak-post-cta p {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

@media (max-width: 768px) {
    .ak-hero-title {
        font-size: 2rem;
    }
    
    .ak-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .ak-navigation {
        flex-direction: column;
        gap: 15px;
    }
    
    .ak-features-grid,
    .ak-team-grid,
    .ak-values-grid,
    .ak-blog-grid {
        grid-template-columns: 1fr;
    }
    
    .ak-info-content,
    .ak-contact-wrapper {
        grid-template-columns: 1fr;
    }
    
    .ak-countdown-display {
        gap: 15px;
    }
    
    .ak-post-header h1 {
        font-size: 1.8rem;
    }
}