
/* Block 1 */
.hero-banner {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    border-radius: 0 0 2rem 2rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.hero-background {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
}

.hero-overlay {
    background: linear-gradient(135deg, rgba(22, 101, 52, 0.85) 0%, rgba(16, 185, 129, 0.75) 50%, rgba(5, 46, 22, 0.9) 100%);
    color: #ffffff;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
    padding: 4rem 0;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: clamp(1.4rem, 3vw, 1.8rem);
    font-weight: 400;
    margin-bottom: 2rem;
    opacity: 0.95;
    color: #d1fae5;
    font-style: italic;
}

.hero-description {
    font-size: 1.2rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    opacity: 0.92;
    font-weight: 400;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

.hero-description-secondary {
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 3rem;
    opacity: 0.88;
    font-weight: 300;
    color: #e6fffa;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
    background: rgba(255, 255, 255, 0.15);
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-number {
    display: block;
    font-size: 2.2rem;
    font-weight: 700;
    color: #a7f3d0;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-primary-hero {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-primary-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(16, 185, 129, 0.6);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
    color: #ffffff;
    text-decoration: none;
}

.btn-secondary-hero {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 1rem 2.5rem;
    border-radius: 3rem;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
}

.btn-secondary-hero:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: #ffffff;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero-banner {
        min-height: 70vh;
    }
    
    .hero-overlay {
        padding: 2rem 0;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-item {
        padding: 1rem 1.5rem;
        flex: 1;
        min-width: 140px;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary-hero,
    .btn-secondary-hero {
        width: 100%;
        max-width: 320px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-description {
        font-size: 1.1rem;
    }
    
    .hero-description-secondary {
        font-size: 1rem;
    }
    
    .stat-item {
        padding: 0.8rem 1rem;
    }
}

/* Block 2 */
.environmental-impact-metrics {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f8f5 100%);
    position: relative;
    overflow: hidden;
}

.environmental-impact-metrics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #28a745 50%, transparent 100%);
}

.section-badge {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.impact-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #1a5f2f;
    line-height: 1.2;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #1a5f2f 0%, #28a745 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.impact-description {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 40px;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.metric-card {
    background: white;
    padding: 30px 25px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(40, 167, 69, 0.08);
    border: 1px solid rgba(40, 167, 69, 0.1);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 20px;
}

.metric-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(40, 167, 69, 0.15);
}

.metric-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.metric-icon i {
    color: white;
    font-size: 24px;
}

.metric-content {
    flex: 1;
}

.metric-number {
    font-size: 2.2rem;
    font-weight: 800;
    color: #1a5f2f;
    margin: 0 0 5px 0;
    line-height: 1;
}

.metric-label {
    font-size: 1rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0 0 5px 0;
}

.metric-detail {
    font-size: 0.85rem;
    color: #718096;
    font-style: italic;
}

.impact-features {
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(40, 167, 69, 0.05);
    border-left: 4px solid #28a745;
}

.feature-item i {
    color: #28a745;
    font-size: 24px;
    margin-top: 5px;
    flex-shrink: 0;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #1a5f2f;
    margin: 0 0 10px 0;
}

.feature-text p {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.6;
    margin: 0;
}

.impact-cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(40, 167, 69, 0.3);
}

.impact-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.4);
    color: white;
}

.impact-visual {
    position: relative;
    overflow: hidden;
    border-radius: 25px;
    box-shadow: 0 25px 50px rgba(40, 167, 69, 0.15);
}

.impact-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.impact-visual:hover .impact-image {
    transform: scale(1.05);
}

.impact-overlay-stats {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.overlay-stat {
    text-align: center;
    flex: 1;
}

.overlay-number {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1a5f2f;
    line-height: 1;
    margin-bottom: 5px;
}

.overlay-text {
    font-size: 0.85rem;
    color: #4a5568;
    font-weight: 600;
}

@media (max-width: 768px) {
    .environmental-impact-metrics {
        padding: 60px 0;
    }
    
    .impact-title {
        font-size: 2.2rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .metric-card {
        padding: 20px;
        gap: 15px;
    }
    
    .metric-icon {
        width: 50px;
        height: 50px;
    }
    
    .metric-number {
        font-size: 1.8rem;
    }
    
    .feature-item {
        padding: 20px;
        gap: 15px;
    }
    
    .impact-image {
        height: 300px;
    }
    
    .impact-overlay-stats {
        flex-direction: column;
        gap: 15px;
        bottom: 20px;
        left: 20px;
        right: 20px;
        padding: 20px;
    }
    
    .overlay-stat {
        text-align: left;
    }
    
    .overlay-number {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    .impact-overlay-stats {
        position: static;
        margin-top: 20px;
        background: white;
        border: 1px solid rgba(40, 167, 69, 0.1);
    }
}

/* Block 3 */
.volunteer-management-system {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #e8f7f3 100%);
    position: relative;
    overflow: hidden;
}

.volunteer-management-system::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
}

.volunteer-image-container {
    position: relative;
    z-index: 2;
}

.volunteer-main-image {
    width: 100%;
    height: auto;
    border-radius: 24px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.volunteer-main-image:hover {
    transform: translateY(-5px);
}

.volunteer-stats-overlay {
    position: absolute;
    top: 20px;
    left: -30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 3;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 200px;
}

.stat-badge i {
    font-size: 24px;
    color: #22c55e;
}

.stat-value {
    font-size: 28px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1;
    margin: 0;
}

.stat-text {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
    margin: 0;
}

.volunteer-content {
    position: relative;
    z-index: 2;
}

.section-label {
    display: inline-block;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.volunteer-title {
    font-size: 48px;
    font-weight: 800;
    color: #111827;
    line-height: 1.2;
    margin-bottom: 30px;
    letter-spacing: -0.02em;
}

.volunteer-description {
    font-size: 18px;
    color: #374151;
    line-height: 1.7;
    margin-bottom: 20px;
}

.volunteer-secondary-text {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 40px;
}

.volunteer-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-bottom: 45px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
    transition: all 0.3s ease;
    display: flex;
    gap: 20px;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.feature-icon {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    border-radius: 16px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: white;
    font-size: 24px;
}

.feature-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 10px;
}

.feature-text {
    font-size: 15px;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}

.volunteer-metrics {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(229, 231, 235, 0.5);
}

.metrics-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    text-align: center;
}

.metric-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.metric-number {
    font-size: 36px;
    font-weight: 800;
    color: #22c55e;
    line-height: 1;
    margin-bottom: 8px;
}

.metric-label {
    font-size: 14px;
    color: #6b7280;
    font-weight: 500;
}

.volunteer-tools {
    margin-bottom: 45px;
}

.tools-title {
    font-size: 22px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 25px;
}

.tools-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.tool-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 16px;
    color: #374151;
    line-height: 1.6;
}

.tool-item i {
    color: #22c55e;
    font-size: 18px;
    flex-shrink: 0;
}

.volunteer-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-volunteer-primary {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(34, 197, 94, 0.3);
}

.btn-volunteer-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(34, 197, 94, 0.4);
    color: white;
    text-decoration: none;
}

.btn-volunteer-secondary {
    background: white;
    color: #22c55e;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 2px solid #22c55e;
    cursor: pointer;
}

.btn-volunteer-secondary:hover {
    background: #22c55e;
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

@media (max-width: 991px) {
    .volunteer-title {
        font-size: 36px;
    }
    
    .volunteer-stats-overlay {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }
    
    .volunteer-features-grid {
        grid-template-columns: 1fr;
    }
    
    .metrics-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .volunteer-actions {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .volunteer-management-system {
        padding: 60px 0;
    }
    
    .volunteer-title {
        font-size: 28px;
    }
    
    .volunteer-stats-overlay {
        flex-direction: column;
        gap: 10px;
    }
    
    .stat-badge {
        min-width: auto;
        padding: 15px 20px;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .volunteer-actions {
        flex-direction: column;
    }
    
    .btn-volunteer-primary,
    .btn-volunteer-secondary {
        text-align: center;
        width: 100%;
    }
}

/* Block 4 */
.community-success-stories {
  padding: 120px 0;
  background: linear-gradient(135deg, #f8fffe 0%, #e8f5f3 100%);
}

.success-header {
  text-align: center;
  margin-bottom: 80px;
}

.success-badge {
  display: inline-block;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  padding: 12px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-bottom: 20px;
  box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
}

.success-title {
  font-size: 48px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 24px;
  line-height: 1.2;
}

.success-description {
  font-size: 20px;
  color: #6b7280;
  line-height: 1.7;
  max-width: 900px;
  margin: 0 auto;
}

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

.story-card {
  background: white;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.story-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.story-image-container {
  position: relative;
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.story-card:hover .story-image {
  transform: scale(1.05);
}

.story-impact-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(16, 185, 129, 0.95);
  color: white;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
}

.story-content {
  padding: 32px;
}

.story-location {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #10b981;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 16px;
}

.story-title {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
  line-height: 1.3;
}

.story-text {
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 24px;
  font-size: 16px;
}

.story-metrics {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  padding: 20px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.metric-small {
  text-align: center;
  flex: 1;
}

.metric-value {
  display: block;
  font-size: 24px;
  font-weight: 800;
  color: #10b981;
  margin-bottom: 4px;
}

.metric-text {
  font-size: 12px;
  color: #6b7280;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.story-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}

.feature-tag {
  background: #ecfdf5;
  color: #065f46;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  border: 1px solid #a7f3d0;
}

.story-quote {
  background: #f9fafb;
  padding: 20px;
  border-radius: 16px;
  border-left: 4px solid #10b981;
  margin-top: 24px;
}

.story-quote i {
  color: #10b981;
  font-size: 20px;
  margin-bottom: 12px;
}

.story-quote p {
  font-style: italic;
  color: #374151;
  margin-bottom: 12px;
  font-size: 15px;
  line-height: 1.6;
}

.story-quote cite {
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}

.success-statistics {
  margin-bottom: 80px;
}

.stats-container {
  background: white;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.5);
}

.stats-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

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

.stat-card {
  text-align: center;
  padding: 30px 20px;
  background: #f9fafb;
  border-radius: 20px;
  transition: all 0.3s ease;
}

.stat-card:hover {
  background: #10b981;
  color: white;
  transform: translateY(-5px);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
  background: white;
}

.stat-icon i {
  font-size: 32px;
  color: white;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-icon i {
  color: #10b981;
}

.stat-number {
  display: block;
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 8px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-number {
  color: white;
}

.stat-label {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 6px;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-label {
  color: white;
}

.stat-detail {
  font-size: 14px;
  color: #6b7280;
  transition: all 0.3s ease;
}

.stat-card:hover .stat-detail {
  color: rgba(255, 255, 255, 0.8);
}

.success-testimonials {
  margin-bottom: 80px;
}

.testimonials-title {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 50px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
  gap: 40px;
}

.testimonial-card {
  background: white;
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(229, 231, 235, 0.5);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px);
}

.testimonial-content {
  margin-bottom: 30px;
}

.testimonial-icon {
  color: #10b981;
  font-size: 24px;
  margin-bottom: 20px;
}

.testimonial-text {
  color: #374151;
  font-size: 17px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid #e5e7eb;
}

.author-image {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #10b981;
}

.author-name {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 4px;
}

.author-title {
  display: block;
  font-size: 14px;
  color: #10b981;
  font-weight: 600;
  margin-bottom: 2px;
}

.author-organization {
  font-size: 13px;
  color: #6b7280;
}

.success-actions {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  padding: 60px 40px;
  border-radius: 24px;
  text-align: center;
  color: white;
}

.actions-title {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  color: white;
}

.actions-description {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 40px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.actions-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-success-primary, .btn-success-secondary {
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
  border: 2px solid transparent;
}

.btn-success-primary {
  background: white;
  color: #10b981;
  border-color: white;
}

.btn-success-primary:hover {
  background: transparent;
  color: white;
  border-color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.btn-success-secondary {
  background: transparent;
  color: white;
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-success-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: white;
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .success-title {
    font-size: 36px;
  }
  
  .success-description {
    font-size: 18px;
  }
  
  .stories-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .story-content {
    padding: 24px;
  }
  
  .story-metrics {
    flex-direction: column;
    gap: 16px;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .testimonial-card {
    padding: 30px 24px;
  }
  
  .actions-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-success-primary, .btn-success-secondary {
    width: 100%;
    max-width: 300px;
  }
}

/* Block 5 */
.contact-form-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fffe 0%, #f0f9f5 100%);
    position: relative;
}

.contact-form-section::before {
    content: '';
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="2" fill="%2310b981" opacity="0.1"/><circle cx="80" cy="40" r="3" fill="%2310b981" opacity="0.08"/><circle cx="40" cy="80" r="2.5" fill="%2310b981" opacity="0.12"/></svg>');
    background-size: 200px 200px;
    opacity: 0.4;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

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

.form-badge {
    display: inline-block;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
}

.form-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 24px;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.form-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #475569;
    max-width: 700px;
    margin: 0 auto;
}

.contact-form-container {
    background: white;
    border-radius: 24px;
    padding: 60px 50px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.06), 0 10px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(16, 185, 129, 0.1);
    margin-top: 40px;
}

.form-grid {
    display: grid;
    gap: 32px;
    margin-bottom: 40px;
}

.input-group {
    position: relative;
}

.input-label {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 12px;
    letter-spacing: 0.3px;
}

.form-input {
    width: 100%;
    padding: 18px 20px;
    font-size: 16px;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    background: #fafafa;
    color: #111827;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: #10b981;
    background: white;
    box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.1), 0 4px 15px rgba(16, 185, 129, 0.08);
    transform: translateY(-1px);
}

.form-input::placeholder {
    color: #9ca3af;
    font-weight: 400;
}

.input-focus-border {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, #10b981, #059669);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.form-input:focus + .input-focus-border {
    transform: scaleX(1);
}

.form-benefits {
    background: #f8fffe;
    border-radius: 16px;
    padding: 30px;
    margin: 40px 0;
    border: 1px solid #d1fae5;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    font-size: 15px;
    color: #374151;
    font-weight: 500;
}

.benefit-item i {
    color: #10b981;
    font-size: 18px;
    width: 20px;
    flex-shrink: 0;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    border: none;
    padding: 20px 32px;
    border-radius: 16px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    letter-spacing: 0.3px;
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.3);
    margin-bottom: 30px;
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
    background: linear-gradient(135deg, #059669 0%, #047857 100%);
}

.submit-button:active {
    transform: translateY(0);
}

.button-icon {
    transition: transform 0.3s ease;
}

.submit-button:hover .button-icon {
    transform: translateX(4px);
}

.form-trust-indicators {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-bottom: 40px;
    padding-top: 20px;
    border-top: 1px solid #f1f5f9;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #64748b;
    font-weight: 500;
}

.trust-item i {
    color: #10b981;
    font-size: 14px;
}

.form-testimonial {
    background: linear-gradient(135deg, #f0f9f5 0%, #e6f7ed 100%);
    border-radius: 20px;
    padding: 35px;
    border: 1px solid #d1fae5;
}

.testimonial-quote {
    font-size: 16px;
    line-height: 1.6;
    color: #374151;
    font-style: italic;
    margin-bottom: 24px;
    font-weight: 500;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.author-name {
    font-weight: 600;
    color: #1f2937;
    display: block;
    font-size: 15px;
}

.author-role {
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 80px 0;
    }
    
    .form-title {
        font-size: 2.5rem;
    }
    
    .contact-form-container {
        padding: 40px 30px;
        border-radius: 20px;
    }
    
    .form-description {
        font-size: 1.1rem;
    }
    
    .form-benefits {
        padding: 25px;
    }
    
    .form-trust-indicators {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .form-title {
        font-size: 2rem;
    }
    
    .contact-form-container {
        padding: 30px 20px;
    }
    
    .submit-button {
        font-size: 16px;
        padding: 18px 24px;
    }
}
