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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Header */
header {
    background: #ffffff;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    min-height: 90px;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 90px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo-img:hover {
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 3rem;
    margin: 0;
    padding: 0;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 1.2rem;
    padding: 0.8rem 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #2c5aa0;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #2c5aa0;
}

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

.donate-btn {
    background: #e74c3c;
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.donate-btn:hover {
    background: #c0392b;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.5) 100%);
    backdrop-filter: blur(1px);
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: white;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out forwards;
}

.title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-description {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.6s forwards;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: slideInUp 1s ease-out 0.8s forwards;
}

.primary-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.primary-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.secondary-btn {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.secondary-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.8);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@keyframes slideInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Fallback: Show elements if JavaScript doesn't load */
.no-js .animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll[data-delay="0.1"] {
    transition-delay: 0.1s;
}

.animate-on-scroll[data-delay="0.2"] {
    transition-delay: 0.2s;
}

.animate-on-scroll[data-delay="0.3"] {
    transition-delay: 0.3s;
}

.animate-on-scroll[data-delay="0.4"] {
    transition-delay: 0.4s;
}

.animate-on-scroll[data-delay="0.5"] {
    transition-delay: 0.5s;
}

/* Projects Section */
.projects {
    padding: 80px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
    font-weight: bold;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
    position: relative;
}

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

.project-card:hover .project-card-top::before {
    opacity: 0;
}

.project-card-top {
    position: relative;
    border-radius: 20px 20px 0 0;
    min-height: 200px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.project-card-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: none;
    z-index: 2;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-card-top::after {
    content: '';
    position: absolute;
    bottom: -25px;
    right: 0;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 0;
    border-top: 25px solid #2d5a27;
}

/* Removed duplicate ::before that overrode the gradient overlay and could cause layout shifts */

.project-icon-large {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    opacity: 0.8;
}


.project-card-bottom {
    background: white;
    padding: 1.5rem;
    border-radius: 0 0 20px 20px;
    margin-top: 0;
    text-align: center;
}

.project-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
    font-weight: bold;
    text-align: center;
}


/* Action Section */
.action-section {
    padding: 80px 0;
    background: white;
    text-align: center;
}

.action-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2d5a27;
    font-weight: bold;
}

.action-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #666;
}

.action-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.action-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.action-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
}

.action-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 90, 39, 0.2);
    border-color: #2d5a27;
}

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

.action-icon {
    font-size: 3.5rem;
    color: #4a7c59;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.action-card:hover .action-icon {
    color: white;
    transform: scale(1.1);
}

.action-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5a27;
    font-weight: bold;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.action-card:hover h3 {
    color: white;
}

.action-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.action-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* Stats Section */
.stats {
    padding: 80px 0;
    background: #f8f9fa;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
    justify-items: center;
}

.stat-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 100%;
    max-width: 280px;
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
}

/* About Section */
.about {
    padding: 80px 0;
}

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

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c5aa0;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.about-btn {
    background: #2c5aa0;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    transition: background 0.3s;
}

.about-btn:hover {
    background: #1e3d72;
}

.about-video {
    background: #f0f0f0;
    height: 300px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.about-video:hover {
    background: #e0e0e0;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.about-video:hover i {
    color: #1e3d72 !important;
    transform: scale(1.1);
}

.about-video:hover p {
    color: #333;
}

/* Navbar Dropdown */
.dropdown {
    position: relative;
}

.dropdown > a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    white-space: nowrap;
}

.dropdown > a i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
    margin-left: 0.3rem;
}

.dropdown:hover > a i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    border-radius: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    border-bottom: 1px solid #f0f0f0;
}

.dropdown-menu a:last-child {
    border-bottom: none;
}

.dropdown-menu a:hover {
    background: #f8f9fa;
    color: #2c5aa0;
    padding-left: 2rem;
}

.mobile-menu-toggle {
    display: none;
}

/* Language Switcher */
.language-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 2rem;
    z-index: 1001;
    position: relative;
}

.lang-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    color: #666;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: bold;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1000;
    position: relative;
    pointer-events: auto;
    user-select: none;
}

.lang-btn:hover {
    background: #e9ecef;
    border-color: #dee2e6;
}

.lang-btn.active {
    background: #2c5aa0;
    color: white;
    border-color: #2c5aa0;
}

.lang-btn.active:hover {
    background: #1e3d72;
    border-color: #1e3d72;
}

/* Page Content Styles */
.page-content {
    padding: 120px 0 80px;
    min-height: 100vh;
    background: #f8f9fa;
}

.page-header {
    text-align: center;
    margin-bottom: 4rem;
}

.page-header h1 {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.content-sections {
    max-width: 900px;
    margin: 0 auto;
}

.content-section {
    margin-bottom: 4rem;
    padding: 0;
}

.content-section h2 {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.content-section p {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Principles Grid */
.principles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.principle-item {
    text-align: center;
    padding: 0;
}

.principle-icon {
    font-size: 3.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.principle-item h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.principle-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
}

/* Organization Grid */
.organization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.org-item {
    text-align: center;
    padding: 0;
}

.org-icon {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.org-item h3 {
    font-size: 1.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 600;
}

.org-item p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

.org-item ul {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 250px;
    margin: 0 auto;
}

.org-item li {
    padding: 0.8rem 0;
    color: #666;
    font-size: 1rem;
    border-bottom: 1px solid #e0e0e0;
}

.org-item li:last-child {
    border-bottom: none;
}

.org-item li:before {
    content: "•";
    color: #2c5aa0;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Principles List */
.principles-list {
    margin-top: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.principle-row {
    display: flex;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
    justify-content: center;
}

.principle-row:last-child {
    border-bottom: none;
}

.principle-row i {
    color: #2c5aa0;
    margin-right: 1rem;
    font-size: 1.5rem;
}

.principle-row span {
    font-size: 1.2rem;
    color: #666;
    font-weight: 500;
}

/* Activities Section */
.activities {
    padding: 80px 0;
    background: white;
}

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

.activity-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.activity-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 18px;
}

.activity-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(45, 90, 39, 0.2);
    border-color: #2d5a27;
}

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

.activity-icon {
    font-size: 3.5rem;
    color: #4a7c59;
    margin-bottom: 1.5rem;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.activity-card:hover .activity-icon {
    color: white;
    transform: scale(1.1);
}

.activity-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2d5a27;
    font-weight: bold;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.activity-card:hover h3 {
    color: white;
}

.activity-card p {
    font-size: 1rem;
    color: #666;
    margin-bottom: 0;
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
    line-height: 1.6;
}

.activity-card:hover p {
    color: rgba(255, 255, 255, 0.9);
}

/* News Section */
.news {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d5a27 0%, #4a7c59 50%, #6b8e23 100%);
    position: relative;
    overflow: hidden;
}

.news::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(255,255,255,0.08) 0%, transparent 50%);
    pointer-events: none;
}

.news-hero {
    text-align: center;
    color: white;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.news-title {
    font-size: 3.5rem;
    font-weight: bold;
    margin: 0 auto 1.5rem auto;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    text-align: center;
    width: 100%;
    max-width: 1000px;
}

.news-subtitle {
    font-size: 1.3rem;
    margin: 0 auto 4rem auto;
    max-width: 800px;
    opacity: 0.95;
    line-height: 1.6;
    text-align: center;
}

.news-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin: 0 auto 3rem auto;
    flex-wrap: wrap;
    max-width: 1000px;
}

.news-stat-item {
    text-align: center;
    position: relative;
}

.news-stat-icon {
    font-size: 3rem;
    color: white;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.news-stat-number {
    font-size: 3.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.news-stat-label {
    font-size: 1.1rem;
    color: white;
    opacity: 0.9;
    max-width: 200px;
    line-height: 1.4;
}


.news-cta {
    background: #1a1a1a;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(255,255,255,0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(255,255,255,0.03) 0%, transparent 50%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

.news-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M30 30c0-11.046-8.954-20-20-20s-20 8.954-20 20 8.954 20 20 20 20-8.954 20-20zm-20 18c-9.941 0-18-8.059-18-18s8.059-18 18-18 18 8.059 18 18-8.059 18-18 18z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.1;
}

.news-cta-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.news-cta h3 {
    font-size: 2.5rem;
    color: #4a7c59;
    font-weight: bold;
    margin: 0;
}

.cta-button {
    background: #4a7c59;
    color: white;
    padding: 1.2rem 2.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.cta-button:hover {
    background: #5a8c69;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74, 124, 89, 0.4);
}

/* E-Atık Page Styles */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.info-icon {
    font-size: 3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.info-card h3 {
    font-size: 1.3rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: bold;
}

.info-card p {
    color: #666;
    line-height: 1.6;
}

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

.harm-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.harm-icon {
    font-size: 3rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    text-align: center;
}

.harm-item h3 {
    font-size: 1.4rem;
    color: #e74c3c;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: bold;
}

.harm-item ul {
    list-style: none;
    padding: 0;
}

.harm-item li {
    padding: 0.5rem 0;
    color: #666;
    border-bottom: 1px solid #f0f0f0;
}

.harm-item li:last-child {
    border-bottom: none;
}

.harm-item li:before {
    content: "⚠";
    margin-right: 0.5rem;
    color: #e74c3c;
}

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

.benefit-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-icon {
    font-size: 3rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.3rem;
    color: #27ae60;
    margin-bottom: 1rem;
    font-weight: bold;
}

.benefit-item p {
    color: #666;
    line-height: 1.6;
}

.management-steps {
    margin-top: 3rem;
}

.step-item {
    display: flex;
    align-items: center;
    margin-bottom: 2rem;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.step-number {
    background: #2c5aa0;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 2rem;
    flex-shrink: 0;
}

.step-content h3 {
    font-size: 1.4rem;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

.legal-info {
    margin-top: 3rem;
}

.legal-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.legal-item h3 {
    font-size: 1.4rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: bold;
}

.legal-item p {
    color: #666;
    line-height: 1.6;
}

/* Maps Section */
.maps-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.maps-title {
    text-align: center;
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 3rem;
    font-weight: bold;
}

.map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    border-radius: 15px;
}

.map-placeholder {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 3rem 2rem;
    text-align: center;
    height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 2px dashed #dee2e6;
    border-radius: 15px;
}

.map-icon {
    font-size: 4rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
}

.map-placeholder h3 {
    color: #2c5aa0;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.map-placeholder p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.map-btn {
    background: #2c5aa0;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.map-btn:hover {
    background: #1e3d72;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(44, 90, 160, 0.4);
    color: white;
    text-decoration: none;
}

.map-info {
    text-align: center;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.map-info p {
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.map-info p i {
    color: #2c5aa0;
    font-size: 1.3rem;
}

.map-link {
    background: #2c5aa0;
    color: white;
    padding: 1rem 2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.map-link:hover {
    background: #1e3d72;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(44, 90, 160, 0.3);
}

.map-link i {
    font-size: 0.9rem;
}

/* Footer */
footer {
    background: #333;
    color: white;
    padding: 60px 0 30px;
}

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

.footer-section h3 {
    margin-bottom: 1rem;
    color: #2c5aa0;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
}

.footer-section a:hover {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #555;
    padding-top: 2rem;
    text-align: center;
    color: #999;
}

/* Mobile Responsive */
@media (max-width: 1200px) {
    .projects-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        margin: 1rem 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 1rem 2rem;
        display: block;
        width: 100%;
        text-align: center;
    }

    .nav-links a:hover {
        background: #f8f9fa;
        color: #2c5aa0;
    }

    .mobile-menu-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 0.5rem;
    }

    .language-switcher {
        margin-left: 1rem;
        margin-top: 1rem;
    }

    .lang-btn {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }

    .mobile-menu-toggle span {
        width: 25px;
        height: 3px;
        background: #333;
        margin: 3px 0;
        transition: 0.3s;
        border-radius: 2px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .logo-img {
        height: 60px;
    }

    nav {
        padding: 1.5rem 0;
        min-height: 70px;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #f8f9fa;
        margin-top: 0.5rem;
        border-radius: 5px;
    }

    .dropdown-menu a {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid #e0e0e0;
    }

    .dropdown-menu a:hover {
        background: #e9ecef;
        padding-left: 1rem;
    }

    .hero {
        min-height: 100vh;
        padding: 80px 0 40px;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .primary-btn, .secondary-btn {
        font-size: 1rem;
        padding: 1rem 2rem;
        width: 100%;
        max-width: 280px;
    }

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

    /* Page Content Mobile */
    .page-content {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2.2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .content-section {
        padding: 2rem 1.5rem;
    }

    .content-section h2 {
        font-size: 1.6rem;
    }

    .principles-grid,
    .organization-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .principle-item,
    .org-item {
        padding: 1.5rem;
    }

    .principle-icon {
        font-size: 2.5rem;
    }

    .org-icon {
        font-size: 2rem;
    }

    .action-cards {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .activities-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        justify-items: center;
        gap: 1.5rem;
    }
    
    .stat-item {
        width: 100%;
        max-width: 250px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .news-title {
        font-size: 2.5rem;
    }

    .news-subtitle {
        font-size: 1.1rem;
        margin-bottom: 3rem;
    }

    .news-stats {
        gap: 2rem;
        margin-bottom: 2rem;
        justify-content: center;
    }

    .news-stat-item {
        text-align: center;
    }

    .news-stat-label {
        text-align: center;
    }

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


    .news-cta-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .news-cta h3 {
        font-size: 2rem;
    }

    .maps-title {
        font-size: 2rem;
    }

    .map-container {
        margin-bottom: 1.5rem;
    }
    
    .map-placeholder {
        padding: 2rem 1rem;
        height: 300px;
    }
    
    .map-icon {
        font-size: 3rem;
        margin-bottom: 1rem;
    }
    
    .map-placeholder h3 {
        font-size: 1.5rem;
        margin-bottom: 0.8rem;
    }
    
    .map-placeholder p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .map-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .map-info {
        padding: 1.5rem;
    }

    .map-info p {
        font-size: 1rem;
        flex-direction: column;
        gap: 0.3rem;
    }

    .map-link {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .info-cards,
    .harm-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .step-item {
        flex-direction: column;
        text-align: center;
    }

    .step-number {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        justify-items: center;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
        margin: 0 auto;
    }

    .news-title {
        font-size: 2rem;
    }

    .news-stats {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }

    .news-stat-item {
        text-align: center;
        width: 100%;
        max-width: 300px;
    }

    .news-stat-label {
        text-align: center;
    }

    .news-stat-number {
        font-size: 2rem;
    }

    .news-cta h3 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
}

/* Donation Form Styles */
.donation-form-section {
    padding: 4rem 0;
    background: #f8f9fa;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Compact Form Styles */
.compact-form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.compact-donation-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compact-donation-form .form-group {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border-left: 4px solid #2c5aa0;
}

.compact-donation-form .form-group h3 {
    color: #2c5aa0;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.compact-donation-form .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.compact-donation-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.95rem;
    cursor: pointer;
}

.compact-donation-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.compact-donation-form .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.compact-donation-form .form-field label {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.compact-donation-form input,
.compact-donation-form select,
.compact-donation-form textarea {
    padding: 0.8rem;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.compact-donation-form input:focus,
.compact-donation-form select:focus,
.compact-donation-form textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.compact-donation-form textarea {
    resize: vertical;
    min-height: 80px;
}

.compact-donation-form .form-actions {
    display: flex;
    justify-content: center;
    margin-top: 1rem;
}

.compact-donation-form .btn {
    background: #2c5aa0;
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.compact-donation-form .btn:hover {
    background: #1e3d6f;
}

@media (max-width: 768px) {
    .compact-form-container {
        margin: 0 1rem;
        padding: 1.5rem;
    }
    
    .compact-donation-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .compact-donation-form .checkbox-group {
        gap: 0.6rem;
    }
    
    .compact-donation-form .checkbox-label {
        font-size: 0.9rem;
    }
}

.form-header {
    text-align: center;
    margin-bottom: 3rem;
}

.form-header h2 {
    color: #2c5aa0;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-header p {
    color: #666;
    font-size: 1.1rem;
}

.donation-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.form-group {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    border-left: 5px solid #2c5aa0;
}

.form-group h3 {
    color: #2c5aa0;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.form-field label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
    font-size: 1rem;
}

.form-field input,
.form-field select,
.form-field textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: 'Poppins', sans-serif;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2c5aa0;
}

.form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 10px;
    transition: background-color 0.3s ease;
    font-size: 1rem;
}

.checkbox-label:hover {
    background-color: #f8f9fa;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.form-actions {
    text-align: center;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.btn-primary {
    background: #2c5aa0;
    color: white;
}

.btn-primary:hover {
    background: #1e3d72;
    transform: translateY(-2px);
}

/* Responsive Design for Donation Form */
@media (max-width: 768px) {
    .form-container {
        padding: 2rem;
        margin: 1rem;
    }

    .form-header h2 {
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .form-group {
        padding: 1.5rem;
    }

    .checkbox-label {
        padding: 0.75rem;
    }
}
