/* Hero Banner */
.hero-banner {
    background-image: url('images/sucess_story_Header.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-content {
    text-align: center;
    color: #fff;
    text-shadow: 0 0 3px rgba(0, 0, 0, 0.5);
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero-title {
    color: #ffffff;
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    text-align: center;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 100;
    color: #ffffff;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.9), 0 0 8px rgba(0, 0, 0, 0.7);
}

/* Success Stories */
.top-profiles {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
    background: #f8f9fa;
    margin: 0 auto;
    padding: 3rem;
}

.story-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.profile-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    width: calc((100% - (4 * 40px)) / 5);
    max-width: 180px;
    min-width: 140px;
    flex: 0 0 auto;
}

.profile-circle {
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
    overflow: hidden;
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 5%;
    border-radius: 50%;
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-size: 0.9rem;
    font-weight: 500;
    color: #333;
    margin-bottom: 2px;
}

.profile-quote {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

.story-detail { 
    display: flex; 
    flex-direction: column; 
    gap: 0; 
    padding: 3rem 2rem; 
    background: #ffffff;
}
.story-top { 
    display: flex; 
    gap: 40px; 
    align-items: flex-start; 
    margin-top: 0;
    background: #ffffff;
    margin-bottom: 20px;
}
.story-left { 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    gap: 8px; 
    background: #a0937d; 
    padding: 20px; 
    width: 50%;
    min-height: 400px;
    justify-content: center;
}
.story-right { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    width: 50%; 
    max-height: 400px;
    border: 10px solid #a0937d;
    box-sizing: border-box;
    padding: 10px;
    background: #ffffff;
    overflow: hidden;
}
.story-copy {
    display: flex;
    gap: 40px;
    margin-top: 20px; 
    width: 100%; 
    position: relative;
    background: #ffffff;
    align-items: flex-start;
}

.story-copy-left {
    flex: 1;
    color: #333;
    text-align: justify;
    line-height: 1.3;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.story-copy-left p {
    margin-bottom: 8px;
    line-height: 1.3;
}

.story-copy-right {
    flex: 1;
    color: #333;
    text-align: justify;
    line-height: 1.3;
    font-size: 0.95rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.story-copy-right p {
    margin-bottom: 8px;
    line-height: 1.3;
}
.badge img { 
    width: 300px; 
    height: auto; 
    max-width: 100%;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}
.identity { 
    text-align: center; 
    margin-top: 15px;
}
.identity h3 { 
    margin: 8px 0 4px; 
    font-weight: 700; 
    color: #ffffff; 
    font-size: 1.3rem; 
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.identity p { 
    color: #ffffff; 
    margin: 0; 
    font-size: 1rem; 
    opacity: 0.9;
}
.story-portrait { 
    width: 100%; 
    height: 100%; 
    max-width: 400px;
    max-height: 400px;
    object-fit: cover;
    object-position: 50% 25%;
    display: block;
}

/* Responsive breakpoints */
@media (max-width: 1200px) {
	/* Hero */
	.hero-title { font-size: 2.6rem; line-height: 1.2; }
	.hero-subtitle { font-size: 1.7rem; }
	
	/* Story */
	.story-top { gap: 32px; }
	.story-detail { padding: 1.5rem 4rem 2.5rem; }
	.story-copy-left { margin-top: -10rem; font-size: 0.95rem; }
	.story-copy-right { margin-top: 0.5rem; font-size: 0.95rem; }
	.badge img { width: 360px; }
	.story-portrait { max-width: 360px; width: 75%; }
	.story-left { min-height: 320px; padding: 18px; }
	.identity h3 { font-size: 1.25rem; }
	.identity p { font-size: 0.95rem; }
	
	/* Profiles */
	.top-profiles { 
		gap: 30px; 
		padding: 35px 25px; 
	}
	.profile-placeholder {
		width: calc((100% - (4 * 30px)) / 5);
	}
	.profile-circle { width: 160px; height: 160px; }
	.profile-name { font-size: 0.9rem; }
	.profile-quote { font-size: 0.8rem; }
}

@media (max-width: 992px) {
	/* Hero */
	.hero-title { font-size: 2.4rem; line-height: 1.2; }
	.hero-subtitle { font-size: 1.5rem; }
	
	/* Story */
	.story-top { flex-direction: column; gap: 24px; }
	.story-left, .story-right { width: 100%; }
	.story-left { min-height: 220px; padding: 16px; margin-bottom: 0; }
	.story-detail { padding: 1.25rem 2.5rem 2rem; }
	.story-copy { flex-direction: column; margin-top: 20px; gap: 0; }
	.story-copy-left { flex: 1; margin-top: 0; font-size: 0.95rem; }
	.story-copy-right { flex: 1; margin-top: 0; font-size: 0.95rem; }
	.badge img { width: 280px; }
	.story-portrait { max-width: 320px; width: 70%; }
	.identity h3 { font-size: 1.2rem; }
	.identity p { font-size: 0.9rem; }
	
	/* Profiles */
	.top-profiles { 
		gap: 25px; 
		padding: 32px 20px; 
	}
	.profile-placeholder {
		width: calc((100% - (3 * 25px)) / 4);
	}
	.profile-circle { width: 150px; height: 150px; }
	.profile-quote { font-size: 0.75rem; }
}

@media (max-width: 768px) {
	/* Hero */
	.hero-title { font-size: 2.1rem; line-height: 1.2; }
	.hero-subtitle { font-size: 1.3rem; }
	
	/* Story */
	.story-detail { padding: 1rem 2rem 1.75rem; }
	.story-left { min-height: 200px; padding: 14px; margin-bottom: 0; }
	.story-copy { flex-direction: column; margin-top: 18px; gap: 0; }
	.story-copy-left { margin-top: 0; font-size: 0.9rem; }
	.story-copy-right { margin-top: 0; font-size: 0.9rem; }
	.badge img { width: 260px; }
	.story-portrait { max-width: 280px; width: 65%; }
	.identity h3 { font-size: 1.1rem; }
	.identity p { font-size: 0.85rem; }
	
	/* Profiles */
	.top-profiles { 
		gap: 20px; 
		padding: 28px 18px; 
	}
	.profile-placeholder {
		width: calc((100% - (2 * 20px)) / 3);
	}
	.profile-circle { width: 140px; height: 140px; }
	.profile-name { font-size: 0.8rem; }
	.profile-quote { font-size: 0.7rem; }
	
	/* Header */
	.header-banner { height: 40px; }
}

@media (max-width: 576px) {
	/* Hero */
	.hero-title { font-size: 1.9rem; line-height: 1.2; }
	.hero-subtitle { font-size: 1.1rem; }
	
	/* Story */
	.story-detail { padding: 0.75rem 1.5rem 1.5rem; }
	.story-left { min-height: 180px; padding: 12px; margin-bottom: 0; }
	.story-copy { gap: 0; padding: 0 8px; margin-top: 16px; }
	.story-copy-left { font-size: 0.85rem; margin-top: 0; }
	.story-copy-right { font-size: 0.85rem; margin-top: 0; }
	.badge img { width: 220px; }
	.story-portrait { max-width: 240px; width: 70%; }
	.identity h3 { font-size: 1rem; }
	.identity p { font-size: 0.8rem; }
	
	/* Profiles */
	.top-profiles { 
		gap: 15px; 
		padding: 24px 12px; 
	}
	.profile-placeholder {
		width: calc((100% - (1 * 15px)) / 2);
	}
	.profile-circle { width: 120px; height: 120px; }
	.profile-name { font-size: 0.75rem; }
	.profile-quote { font-size: 0.65rem; }
	
	/* Header */
	.header-banner { height: 30px; }
}