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

:root {
    --primary: #D4427D;
    --secondary: #7C6A0A;
    --accent: #2EC4B6;
    --dark: #1A1423;
    --light: #F7FFF7;
    --text: #3D3D3D;
    --gradient: linear-gradient(135deg, #D4427D 0%, #7C6A0A 50%, #2EC4B6 100%);
}

body {
    font-family: 'Courier New', monospace;
    line-height: 1.7;
    color: var(--text);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Comic Sans MS', cursive;
    font-weight: 700;
    color: var(--dark);
}

h1 { font-size: clamp(2.5rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(26, 20, 35, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 3px solid var(--primary);
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    position: relative;
}

.logo {
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--accent);
    text-transform: lowercase;
    letter-spacing: -1px;
}

.logo:hover {
    color: var(--primary);
    transform: scale(1.05);
}

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

.nav-link {
    color: var(--light);
    font-size: 1rem;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger span {
    width: 28px;
    height: 3px;
    background: var(--light);
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
    padding: 120px 20px 60px;
    background: var(--gradient);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.hero-content {
    z-index: 2;
    padding: 0 40px;
}

.hero-title {
    color: var(--light);
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 0 var(--dark);
    animation: slideIn 0.8s ease-out;
}

@keyframes slideIn {
    from { opacity: 0; transform: translateX(-50px); }
    to { opacity: 1; transform: translateX(0); }
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 2rem;
    animation: slideIn 0.8s ease-out 0.2s backwards;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--dark);
    color: var(--light);
    border: 3px solid var(--accent);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    animation: slideIn 0.8s ease-out 0.4s backwards;
}

.btn-primary:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 5px 5px 0 var(--primary);
}

.hero-image {
    z-index: 2;
    animation: fadeIn 1s ease-out 0.6s backwards;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-image img {
    width: 100%;
    border: 8px solid var(--light);
    box-shadow: 15px 15px 0 rgba(0, 0, 0, 0.3);
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.hero-image img:hover {
    transform: rotate(0deg) scale(1.05);
}

/* Info Section */
.info-section {
    padding: 80px 20px;
    background: var(--light);
}

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

.info-card {
    background: white;
    border: 4px solid var(--dark);
    padding: 0;
    transition: all 0.4s ease;
    position: relative;
}

.info-card::before {
    content: '';
    position: absolute;
    top: -4px;
    right: -4px;
    bottom: -4px;
    left: -4px;
    background: var(--gradient);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover::before {
    opacity: 1;
}

.info-card:hover {
    transform: translateY(-10px) rotate(-1deg);
}

.info-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-bottom: 4px solid var(--dark);
}

.info-card h2,
.info-card h3 {
    padding: 1.5rem 1.5rem 1rem;
    color: var(--primary);
}

.info-card p {
    padding: 0 1.5rem 1.5rem;
    line-height: 1.7;
}

/* Research Section */
.research-section {
    padding: 80px 20px;
    background: var(--dark);
    color: var(--light);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: var(--light);
    position: relative;
    display: inline-block;
    left: 50%;
    transform: translateX(-50%);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
}

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

.research-text h3 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.research-list {
    list-style: none;
    margin-top: 2rem;
}

.research-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-left: 3px solid var(--accent);
    margin-bottom: 1rem;
}

.research-list li::before {
    content: '→';
    position: absolute;
    left: 0.5rem;
    color: var(--accent);
    font-weight: bold;
}

.research-image img {
    border: 6px solid var(--accent);
    box-shadow: -15px 15px 0 var(--primary);
}

/* Impact Section */
.impact-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.impact-section .section-title {
    color: var(--light);
}

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

.stat-card {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    text-align: center;
    border: 4px solid var(--dark);
    transform: rotate(-2deg);
    transition: all 0.3s ease;
}

.stat-card:nth-child(even) {
    transform: rotate(2deg);
}

.stat-card:hover {
    transform: rotate(0deg) scale(1.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-family: 'Comic Sans MS', cursive;
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

.testimonial-card {
    background: white;
    border: 4px dashed var(--secondary);
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-style: solid;
    box-shadow: 8px 8px 0 var(--accent);
    transform: translateY(-5px);
}

.testimonial-card img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    border: 4px solid var(--primary);
    object-fit: cover;
}

.testimonial-card blockquote {
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.testimonial-card cite {
    color: var(--secondary);
    font-weight: bold;
    font-style: normal;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 20px;
    background: var(--secondary);
}

.gallery-section .section-title {
    color: var(--light);
}

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

.gallery-item {
    overflow: hidden;
    border: 5px solid var(--light);
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: grayscale(30%);
}

.gallery-item:hover img {
    transform: scale(1.2) rotate(5deg);
    filter: grayscale(0%);
}

/* FAQ Section */
.faq-section {
    padding: 80px 20px;
    background: var(--light);
}

.faq-container {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: white;
    border-left: 6px solid var(--primary);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    background: linear-gradient(90deg, rgba(212, 66, 125, 0.1) 0%, transparent 100%);
    transition: all 0.3s ease;
    position: relative;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 1.5rem;
    font-size: 2rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::after {
    transform: rotate(45deg);
}

.faq-question:hover {
    background: linear-gradient(90deg, rgba(212, 66, 125, 0.2) 0%, transparent 100%);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 1.5rem;
}

/* Form Section */
.form-section {
    padding: 80px 20px;
    background: var(--dark);
}

.form-section .section-title {
    color: var(--light);
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-description {
    text-align: center;
    color: var(--light);
    margin-bottom: 2rem;
}

.contact-form {
    background: var(--light);
    padding: 3rem;
    border: 5px solid var(--accent);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 3px solid var(--dark);
    background: white;
    font-family: 'Courier New', monospace;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 5px 5px 0 var(--accent);
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: var(--primary);
    color: var(--light);
    border: 3px solid var(--dark);
    font-family: 'Comic Sans MS', cursive;
    font-size: 1.2rem;
    font-weight: bold;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--accent);
    color: var(--dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    background: var(--dark);
    color: var(--light);
    padding: 60px 20px 20px;
    border-top: 4px solid var(--primary);
}

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

.footer-col h3 {
    color: var(--accent);
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

.footer-col a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.contact-info li {
    margin-bottom: 1rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 2px solid var(--accent);
}

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--light);
    padding: 1.5rem;
    border-top: 4px solid var(--accent);
    z-index: 999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

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

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

.btn-cookie {
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: var(--light);
    border: 2px solid var(--accent);
    cursor: pointer;
    font-weight: bold;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-cookie:hover {
    background: var(--accent);
    color: var(--dark);
}

/* Page Hero for inner pages */
.page-hero {
    padding: 150px 20px 60px;
    background: var(--gradient);
    text-align: center;
}

.page-hero h1 {
    color: var(--light);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 0 var(--dark);
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--light);
}

/* About Page Styles */
.about-content {
    padding: 80px 20px;
}

.about-section {
    margin-bottom: 4rem;
}

.about-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.5rem;
    display: inline-block;
}

.about-section p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

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

.about-image img {
    border: 6px solid var(--primary);
    box-shadow: 10px 10px 0 var(--accent);
}

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

.values-list li {
    padding: 1rem 0 1rem 2rem;
    position: relative;
    border-left: 4px solid var(--accent);
    margin-bottom: 1rem;
    background: rgba(46, 196, 182, 0.05);
}

.values-list li strong {
    color: var(--primary);
}

.timeline {
    position: relative;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--accent);
}

.timeline-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-year {
    font-family: 'Comic Sans MS', cursive;
    font-size: 2rem;
    font-weight: bold;
    color: var(--primary);
    text-align: right;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border: 4px solid var(--dark);
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    left: -14px;
    top: 30px;
    width: 10px;
    height: 10px;
    background: var(--accent);
    border: 4px solid var(--dark);
    border-radius: 50%;
}

.timeline-content h3 {
    color: var(--secondary);
    margin-bottom: 1rem;
}

.team-intro {
    text-align: center;
    font-size: 1.1rem;
    margin-bottom: 3rem;
}

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

.team-stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: var(--light);
    border: 4px solid var(--dark);
}

.team-number {
    font-family: 'Comic Sans MS', cursive;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

/* Contacts Page Styles */
.contacts-content {
    padding: 80px 20px;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border: 5px solid var(--dark);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px) rotate(-2deg);
    box-shadow: 10px 10px 0 var(--accent);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.contact-card h2 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.contact-link {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--secondary);
    margin: 1.5rem 0;
}

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

.map-section {
    margin: 4rem 0;
}

.map-section h2 {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--primary);
}

.map-container {
    border: 6px solid var(--dark);
    margin-bottom: 1.5rem;
}

.map-description {
    text-align: center;
    line-height: 1.8;
}

.form-section-page {
    background: var(--dark);
    padding: 3rem;
    border: 5px solid var(--accent);
    margin: 4rem 0;
}

.form-section-page h2 {
    color: var(--light);
    text-align: center;
    margin-bottom: 1rem;
}

.form-intro {
    text-align: center;
    color: var(--light);
    margin-bottom: 2rem;
}

.info-section-page {
    margin-top: 4rem;
}

.info-section-page h2 {
    text-align: center;
    color: var(--primary);
    margin-bottom: 3rem;
}

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

.info-box {
    background: white;
    padding: 2rem;
    border: 4px dashed var(--secondary);
    text-align: center;
}

.info-box h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.info-box a {
    color: var(--secondary);
    font-weight: bold;
    text-decoration: underline;
}

/* Success Page Styles */
.success-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 150px 20px 80px;
}

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

.success-icon {
    width: 120px;
    height: 120px;
    background: var(--accent);
    color: var(--light);
    font-size: 5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 2rem;
    border: 6px solid var(--dark);
    animation: successPop 0.6s ease-out;
}

@keyframes successPop {
    0% { transform: scale(0); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.success-content h1 {
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.success-message {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 3rem;
}

.success-info {
    background: white;
    padding: 2rem;
    border: 4px solid var(--dark);
    margin-bottom: 2rem;
}

.success-info h2 {
    color: var(--secondary);
    margin-bottom: 1.5rem;
}

.success-steps {
    text-align: left;
    max-width: 500px;
    margin: 0 auto;
}

.success-steps li {
    padding: 0.8rem 0;
    border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.success-steps li:last-child {
    border-bottom: none;
}

.success-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--secondary);
    color: var(--light);
    border: 3px solid var(--dark);
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--dark);
    transform: translateY(-3px);
}

.success-additional {
    background: rgba(46, 196, 182, 0.1);
    padding: 2rem;
    border: 3px dashed var(--accent);
}

.success-additional h3 {
    color: var(--primary);
    margin-bottom: 1rem;
}

.quick-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.5rem;
}

.quick-links a {
    padding: 0.7rem 1.5rem;
    background: var(--accent);
    color: var(--dark);
    border: 2px solid var(--dark);
    font-weight: bold;
    transition: all 0.3s ease;
}

.quick-links a:hover {
    background: var(--primary);
    color: var(--light);
}

/* Legal Pages Styles */
.legal-content {
    padding: 60px 20px 80px;
    max-width: 900px;
    margin: 0 auto;
}

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

.legal-section h2 {
    color: var(--primary);
    margin-bottom: 1.5rem;
    border-bottom: 3px solid var(--accent);
    padding-bottom: 0.5rem;
}

.legal-section h3 {
    color: var(--secondary);
    margin: 1.5rem 0 1rem;
}

.legal-section p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.legal-list {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-list li {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.contact-box {
    background: linear-gradient(135deg, rgba(212, 66, 125, 0.1) 0%, rgba(46, 196, 182, 0.1) 100%);
    padding: 2rem;
    border: 4px solid var(--accent);
    margin: 1.5rem 0;
}

.contact-box p {
    margin-bottom: 0.8rem;
}

.contact-box a {
    color: var(--secondary);
    font-weight: bold;
}

.legal-notice {
    background: var(--dark);
    color: var(--light);
    padding: 1.5rem;
    border: 4px solid var(--accent);
    font-weight: bold;
    text-align: center;
    margin-top: 2rem;
}

/* Responsive */
@media (max-width: 768px) {
    .burger {
        display: flex;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        background: var(--dark);
        flex-direction: column;
        padding: 80px 20px 20px;
        transition: right 0.4s ease;
        gap: 0;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-link {
        width: 100%;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .hero {
        grid-template-columns: 1fr;
        padding: 100px 20px 40px;
        text-align: center;
    }

    .hero-content {
        padding: 0 20px;
    }

    .research-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .gallery-item img {
        height: 200px;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        grid-template-columns: 1fr;
    }

    .timeline-year {
        text-align: left;
        padding-left: 50px;
    }

    .timeline-content::before {
        left: -34px;
    }

    .team-stats {
        grid-template-columns: 1fr;
    }

    .success-actions {
        flex-direction: column;
    }

    .quick-links {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }
}