/* Global Styles */
:root {
    --primary-color: #ff6b6b;
    --secondary-color: #4ecdc4;
    --dark-color: #1a535c;
    --light-color: #f7fff7;
    --grey-color: #eff0f3;
    --text-color: #2d3142;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
}

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

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

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

ul {
    list-style: none;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    width: 50px;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-header p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.primary-btn {
    background-color: var(--primary-color);
    color: white;
}

.primary-btn:hover {
    background-color: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
}

.header.scrolled {
    background-color: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

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

.logo h1 {
    color: var(--light-color);
    font-size: 1.8rem;
    font-weight: 700;
    transition: var(--transition);
}

.header.scrolled .logo h1 {
    color: var(--dark-color);
}

.main-nav ul {
    display: flex;
}

.main-nav ul li {
    margin-left: 30px;
}

.main-nav ul li a {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.header.scrolled .main-nav ul li a {
    color: var(--text-color);
}

.main-nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: var(--transition);
}

.main-nav ul li a:hover::after {
    width: 100%;
}

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--light-color);
    margin-bottom: 5px;
    transition: var(--transition);
}

.header.scrolled .menu-toggle span {
    background-color: var(--dark-color);
}

/* Welcome Section */
.welcome-section {
    height: 100vh;
    background: linear-gradient(rgba(26, 83, 92, 0.8), rgba(26, 83, 92, 0.8)), url('https://images.unsplash.com/photo-1534438327276-14e5300c3a48?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
}

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

.welcome-content {
    width: 50%;
    color: var(--light-color);
}

.welcome-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease-out;
}

.welcome-content p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease-out 0.3s forwards;
    opacity: 0;
}

.welcome-content .btn {
    animation: fadeInUp 1s ease-out 0.6s forwards;
    opacity: 0;
}

.welcome-image {
    width: 40%;
    position: relative;
    animation: fadeIn 1.5s ease-out;
}

.welcome-image img {
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Why Us Section */
.why-us-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

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

.feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    overflow: hidden;
    border-radius: 50%;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--dark-color);
}

/* Achievements Section */
.achievements-section {
    padding: 100px 0;
    background-color: var(--grey-color);
}

.achievements-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.achievements-timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 100%;
    background-color: var(--secondary-color);
    left: 50%;
    transform: translateX(-50%);
}

.timeline-item {
    margin-bottom: 50px;
    position: relative;
    display: flex;
    align-items: center;
}

.timeline-marker {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--primary-color);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-content {
    width: 45%;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: auto;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: auto;
}

.timeline-content h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
}

/* Stats Section */
.stats-section {
    padding: 100px 0;
    background: linear-gradient(rgba(26, 83, 92, 0.9), rgba(26, 83, 92, 0.9)), url('https://images.unsplash.com/photo-1594882645126-14020914d58d?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1485&q=80') no-repeat center center/cover;
    color: var(--light-color);
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.2);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.stat-label {
    font-size: 1.2rem;
    font-weight: 500;
}

/* Gallery Section */
.gallery-section {
    padding: 100px 0;
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    color: white;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background-color: var(--grey-color);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 30px;
}

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

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.info-item {
    margin-top: 20px;
}

.info-item h4 {
    margin-bottom: 5px;
    color: var(--secondary-color);
}

.contact-form {
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.form-checkbox input {
    margin-right: 10px;
}

.contact-form .btn {
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 60px 0 20px;
}

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

.footer-logo h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.footer-links h4,
.footer-legal h4 {
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.footer-links ul li,
.footer-legal ul li {
    margin-bottom: 10px;
}

.footer-links ul li a,
.footer-legal ul li a {
    transition: var(--transition);
}

.footer-links ul li a:hover,
.footer-legal ul li a:hover {
    color: var(--primary-color);
}

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

/* Responsive Design */
@media (max-width: 992px) {
    .section-header h2 {
        font-size: 2rem;
    }

    .welcome-section .container {
        flex-direction: column;
    }

    .welcome-content,
    .welcome-image {
        width: 100%;
        text-align: center;
    }

    .welcome-content h2 {
        font-size: 2.5rem;
    }

    .welcome-image {
        margin-top: 50px;
        max-width: 500px;
    }

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

@media (max-width: 768px) {
    .header .container {
        position: relative;
    }

    .menu-toggle {
        display: flex;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        padding: 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        transform: translateY(20px);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .main-nav ul {
        flex-direction: column;
    }

    .main-nav ul li {
        margin: 10px 0;
        margin-left: 0;
    }

    .main-nav ul li a {
        color: var(--text-color);
    }

    .welcome-content h2 {
        font-size: 2rem;
    }

    .timeline-content {
        width: 90%;
        margin: 0 auto !important;
        text-align: center !important;
    }

    .timeline-item {
        flex-direction: column;
    }

    .timeline-marker {
        position: static;
        transform: none;
        margin: 20px 0;
    }

    .achievements-timeline::before {
        left: 50%;
        height: calc(100% - 100px);
        top: 50px;
    }
}

@media (max-width: 576px) {
    .section-header h2 {
        font-size: 1.8rem;
    }

    .welcome-content h2 {
        font-size: 1.8rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

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

.policy-header {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(26, 83, 92, 0.8), rgba(26, 83, 92, 0.8)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1375&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.policy-content {
    padding: 60px 0;
    background-color: var(--light-color);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-section h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.policy-section p, .policy-section ul {
    margin-bottom: 15px;
}

.policy-section ul {
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.back-to-home {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.back-to-home:hover {
    color: var(--dark-color);
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

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

.cookie-table th {
    background-color: var(--grey-color);
    font-weight: 600;
}

.cookie-table tr:hover {
    background-color: #f5f5f5;
}

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-container {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .cookie-table {
        display: block;
        overflow-x: auto;
    }
}

.policy-header {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(26, 83, 92, 0.8), rgba(26, 83, 92, 0.8)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1375&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.policy-content {
    padding: 60px 0;
    background-color: var(--light-color);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-section h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.policy-section p, .policy-section ul {
    margin-bottom: 15px;
}

.policy-section ul {
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.back-to-home {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.back-to-home:hover {
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-container {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
}

.success-container {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    background: linear-gradient(rgba(26, 83, 92, 0.8), rgba(26, 83, 92, 0.8)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1375&q=80') no-repeat center center/cover;
    color: white;
}

.success-icon {
    width: 100px;
    height: 100px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.success-icon svg {
    width: 50px;
    height: 50px;
}

.success-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.success-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 30px;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0.7);
    }
    
    70% {
        transform: scale(1.1);
        box-shadow: 0 0 0 15px rgba(255, 107, 107, 0);
    }
    
    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(255, 107, 107, 0);
    }
}

@media (max-width: 768px) {
    .success-content h1 {
        font-size: 2rem;
    }
}

.policy-header {
    padding: 120px 0 60px;
    background: linear-gradient(rgba(26, 83, 92, 0.8), rgba(26, 83, 92, 0.8)), url('https://images.unsplash.com/photo-1571902943202-507ec2618e8f?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1375&q=80') no-repeat center center/cover;
    color: white;
    text-align: center;
}

.policy-header h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.policy-content {
    padding: 60px 0;
    background-color: var(--light-color);
}

.policy-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 30px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.policy-section {
    margin-bottom: 40px;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section h2 {
    color: var(--dark-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.policy-section h3 {
    color: var(--primary-color);
    margin: 20px 0 10px;
    font-size: 1.3rem;
}

.policy-section p, .policy-section ul {
    margin-bottom: 15px;
}

.policy-section ul {
    padding-left: 20px;
}

.policy-section ul li {
    margin-bottom: 10px;
    list-style-type: disc;
}

.back-to-home {
    display: inline-block;
    margin-top: 30px;
    color: var(--primary-color);
    font-weight: 500;
    transition: var(--transition);
}

.back-to-home:hover {
    color: var(--dark-color);
}

@media (max-width: 768px) {
    .policy-header h1 {
        font-size: 2rem;
    }
    
    .policy-container {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
}

img {
    filter: grayscale(1);
}

img:hover {
    filter: grayscale(0);
}