/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #084643;
    --secondary-color: #2D8C72;
    --accent-color: #A9D1C3;
    --light-color: #EFE1E0;
    --dark-color: #032826;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(8, 70, 67, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Georgia', 'Times New Roman', serif;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
    font-size: 16px;
		    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 14px;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-accept {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: bold;
    transition: var(--transition);
}

.btn-accept:hover {
    background: var(--accent-color);
    color: var(--primary-color);
}

.btn-more {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    transition: var(--transition);
}

.btn-more:hover {
    background: var(--white);
    color: var(--primary-color);
}

/* Header */
.header {
    background: var(--primary-color);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 4px solid var(--secondary-color);
}

.navbar {
    padding: 15px 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 10px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.logo i {
    font-size: 32px;
    color: var(--accent-color);
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: var(--white);
    font-size: 16px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    position: relative;
    transition: var(--transition);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 80%;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-color);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 28px;
    cursor: pointer;
}

/* Hero Section with Retro Style */
.hero {
    position: relative;
    min-height: 500px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
    border-bottom: 6px solid var(--accent-color);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></svg>');
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 60px 0;
}

.hero-text {
    max-width: 700px;
    animation: fadeInUp 1s ease;
}

.retro-title {
    font-size: 48px;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
    line-height: 1.2;
    font-weight: bold;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--light-color);
    margin-bottom: 30px;
    font-style: italic;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-decoration {
    position: absolute;
    right: -100px;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
    height: 400px;
    opacity: 0.1;
}

.flower-pattern {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, var(--accent-color) 20%, transparent 20%);
    background-size: 50px 50px;
    animation: rotate 60s linear infinite;
}

/* Hover Effects for Hero */
.hero:hover .retro-title {
    transform: scale(1.02);
    transition: var(--transition);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid transparent;
    font-family: 'Georgia', serif;
}

.btn-primary {
    background: var(--secondary-color);
    color: var(--white);
    border-color: var(--secondary-color);
    box-shadow: 4px 4px 0 var(--primary-color);
}

.btn-primary:hover {
    background: var(--accent-color);
    color: var(--primary-color);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--primary-color);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
    box-shadow: 4px 4px 0 rgba(0,0,0,0.2);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 rgba(0,0,0,0.2);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-full {
    width: 100%;
}

.btn-small {
    padding: 8px 16px;
    font-size: 14px;
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 5px;
}

.btn-small:hover {
    background: var(--primary-color);
}

/* Section Styles */
section {
    padding: 60px 0;
}

.section-header {
    margin-bottom: 40px;
}

.section-header.centered {
    text-align: center;
}

.section-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

.section-header p {
    font-size: 18px;
    color: var(--secondary-color);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    border-radius: 10px;
    box-shadow: 8px 8px 0 var(--accent-color);
    background: #c0c0c0;
    min-height: 300px;
    object-fit: cover;
}

.image-decoration {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    border: 4px solid var(--secondary-color);
    border-radius: 50%;
    z-index: -1;
}

.about-content h3 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--dark-color);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.feature-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.feature-item i {
    font-size: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.feature-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Services Section */
.services-section {
    background: var(--light-color);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: var(--transition);
    border-top: 4px solid var(--secondary-color);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.15);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-icon i {
    font-size: 36px;
    color: var(--primary-color);
}

.service-card h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--dark-color);
    margin-bottom: 20px;
}

.service-link {
    color: var(--secondary-color);
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.service-link:hover {
    color: var(--primary-color);
}

/* Advantages Section */
.advantages-section {
    background: var(--white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    position: relative;
    border: 3px solid var(--accent-color);
    transition: var(--transition);
}

.advantage-card:hover {
    border-color: var(--secondary-color);
    transform: scale(1.05);
}

.advantage-number {
    position: absolute;
    top: -15px;
    left: 20px;
    background: var(--secondary-color);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.advantage-card i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.advantage-card h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
    font-size: 20px;
}

/* Trust Section */
.trust-section {
    background: var(--primary-color);
    color: var(--white);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.trust-badge {
    text-align: center;
    padding: 20px;
}

.trust-badge i {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 15px;
}

.trust-badge h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.trust-badge p {
    font-size: 14px;
    opacity: 0.9;
}

/* Contact Section */
.contact-section {
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 50px;
}

.contact-info h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 32px;
}

.contact-info > p {
    color: var(--dark-color);
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-item i {
    font-size: 28px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

.info-item h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-form-wrapper {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid var(--accent-color);
    border-radius: 5px;
    font-family: 'Georgia', serif;
    font-size: 16px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

/* Content Section - Magazine Layout */
.content-section {
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.content-main {
    background: var(--light-color);
    padding: 40px;
    border-radius: 10px;
}

.content-image {
    margin-bottom: 30px;
}

.content-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    background: #c0c0c0;
    min-height: 300px;
    object-fit: cover;
}

.content-main h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
    margin-top: 30px;
}

.content-main h3 {
    font-size: 26px;
    color: var(--primary-color);
    margin: 30px 0 20px 0;
    border-left: 4px solid var(--secondary-color);
    padding-left: 15px;
}

.content-main h4 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.content-main p {
    margin-bottom: 15px;
    line-height: 1.8;
}

.content-main ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
}

.content-main ul li {
    margin-bottom: 8px;
}

/* Process Steps */
.process-steps {
    margin: 30px 0;
}

.process-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

.step-content h4 {
    margin-bottom: 8px;
}

/* Programs Section */
.programs-section {
    margin: 40px 0;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.program-card {
    background: var(--white);
    border: 3px solid var(--accent-color);
    border-radius: 10px;
    padding: 25px;
    position: relative;
    transition: var(--transition);
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0,0,0,0.1);
}

.program-card.featured {
    border-color: var(--secondary-color);
    box-shadow: 0 4px 12px rgba(45, 140, 114, 0.2);
}

.program-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.program-header i {
    font-size: 36px;
    color: var(--secondary-color);
}

.program-header h4 {
    font-size: 20px;
    color: var(--primary-color);
}

.program-features {
    margin-bottom: 20px;
}

.program-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.program-features i {
    color: var(--secondary-color);
    font-size: 18px;
}

/* Accordion */
.accordion {
    margin: 30px 0;
}

.accordion-item {
    background: var(--white);
    border: 2px solid var(--accent-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

.accordion-header {
    width: 100%;
    padding: 20px;
    background: var(--light-color);
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    color: var(--primary-color);
    transition: var(--transition);
    text-align: left;
    font-family: 'Georgia', serif;
}

.accordion-header:hover {
    background: var(--accent-color);
}

.accordion-header i {
    font-size: 24px;
    transition: var(--transition);
}

.accordion-item.active .accordion-header i {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.accordion-item.active .accordion-content {
    padding: 20px;
    max-height: 1000px;
}

.accordion-content p {
    margin-bottom: 15px;
}

.accordion-content ul {
    list-style: disc;
    margin-left: 20px;
}

.accordion-content ul li {
    margin-bottom: 8px;
}

/* Class Descriptions */
.class-descriptions {
    margin: 30px 0;
}

.class-card {
    background: var(--white);
    border-left: 5px solid var(--secondary-color);
    padding: 25px;
    margin-bottom: 25px;
    border-radius: 5px;
    box-shadow: var(--shadow);
    display: flex;
    gap: 20px;
}

.class-icon {
    width: 60px;
    height: 60px;
    background: var(--accent-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.class-icon i {
    font-size: 32px;
    color: var(--primary-color);
}

.class-content h4 {
    margin-bottom: 10px;
}

.class-content p {
    margin-bottom: 10px;
}

/* Masters Section */
.masters-section {
    margin: 40px 0;
}

.masters-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.master-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    border-top: 4px solid var(--secondary-color);
}

.master-info h4 {
    color: var(--primary-color);
    margin-bottom: 5px;
    font-size: 20px;
}

.master-title {
    color: var(--secondary-color);
    font-style: italic;
    margin-bottom: 10px;
    font-weight: bold;
}

/* Schedule Table */
.schedule-section {
    margin: 40px 0;
}

.schedule-table {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.schedule-row {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid var(--accent-color);
    align-items: center;
}

.schedule-row.header {
    background: var(--primary-color);
    color: var(--white);
    font-weight: bold;
}

.schedule-row:last-child {
    border-bottom: none;
}

.schedule-row:not(.header):hover {
    background: var(--light-color);
}

/* Philosophy Grid */
.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.philosophy-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow);
}

.philosophy-card i {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.philosophy-card h4 {
    margin-bottom: 10px;
}

/* Plant Categories */
.plant-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.category-box {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
    box-shadow: var(--shadow);
}

.category-box h4 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.category-box i {
    color: var(--secondary-color);
}

/* Design Principles */
.design-principles {
    margin: 30px 0;
}

.principle-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.principle-number {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    flex-shrink: 0;
}

/* Seasons Showcase */
.seasons-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin: 30px 0;
}

.season-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.season-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.season-header i {
    font-size: 36px;
    color: var(--secondary-color);
}

.season-header h4 {
    color: var(--primary-color);
    font-size: 20px;
}

.season-colors {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.color-dot {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.benefit-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.benefit-item i {
    font-size: 32px;
    color: var(--secondary-color);
    flex-shrink: 0;
}

/* Trust Mini Section */
.trust-mini-section {
    background: var(--light-color);
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
}

.trust-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.trust-mini-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--white);
    padding: 15px;
    border-radius: 5px;
}

.trust-mini-item i {
    font-size: 28px;
    color: var(--secondary-color);
}

.trust-mini-item span {
    font-weight: bold;
    color: var(--primary-color);
}

/* Plant Requirements */
.plant-requirements {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 30px 0;
}

.req-card {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    box-shadow: var(--shadow);
}

.req-card i {
    font-size: 42px;
    color: var(--secondary-color);
    margin-bottom: 15px;
}

.req-card h4 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Process Timeline */
.process-timeline {
    margin: 40px 0;
}

.timeline-step {
    display: flex;
    gap: 25px;
    margin-bottom: 30px;
    align-items: flex-start;
    position: relative;
}

.timeline-step:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 25px;
    top: 60px;
    width: 3px;
    height: calc(100% + 10px);
    background: var(--accent-color);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}

.step-content {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    flex: 1;
}

.step-content h4 {
    margin-bottom: 10px;
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: var(--white);
    padding: 25px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.sidebar-card h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sidebar-card p {
    margin-bottom: 15px;
}

.sidebar-links li {
    margin-bottom: 10px;
}

.sidebar-links a {
    color: var(--dark-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.sidebar-links a:hover {
    color: var(--secondary-color);
    padding-left: 5px;
}

.sidebar-card.highlight {
    background: var(--accent-color);
    border: 3px solid var(--secondary-color);
}

.sidebar-card.highlight i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.sidebar-card.info-card {
    background: var(--light-color);
}

.sidebar-card.info-card i {
    font-size: 36px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

/* CTA Section */
.cta-section {
    background: var(--secondary-color);
    padding: 60px 0;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 50px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    font-size: 22px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-col h3 i {
    color: var(--accent-color);
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--accent-color);
}

.footer-col p {
    opacity: 0.9;
    line-height: 1.6;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    opacity: 0.9;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-contact i {
    color: var(--accent-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.2);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-text {
        max-width: 100%;
    }
    
    .retro-title {
        font-size: 36px;
    }
    
    .about-grid,
    .contact-wrapper,
    .content-grid {
        grid-template-columns: 1fr;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .schedule-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .schedule-row > div {
        padding: 5px 0;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: var(--primary-color);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
        padding: 20px 0;
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        margin: 0;
        width: 100%;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        display: block;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero {
        min-height: 400px;
    }
    
    .retro-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    section {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 28px;
    }
    
    .content-main {
        padding: 25px;
    }
    
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .retro-title {
        font-size: 24px;
    }
    
    .hero-subtitle {
        font-size: 14px;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .cookie-content {
        flex-direction: column;
    }
    
    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }
    
    .btn-accept,
    .btn-more {
        width: 100%;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 15px;
    }
    
    .retro-title {
        font-size: 22px;
    }
    
    .content-main,
    .contact-form-wrapper {
        padding: 20px;
    }
}