:root {
--primary-color: #A1A8B3;
--secondary-color: #C6CBD4;
--tertiary-color: #EAEDEF;
--text-dark: #2c3e50;
--text-light: #ffffff;
--gradient-primary: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
--gradient-accent: linear-gradient(45deg, var(--secondary-color), var(--tertiary-color));
}
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
color: var(--text-dark);
background: var(--tertiary-color);
}
header {
background: var(--gradient-primary);
min-height: 80px;
display: flex;
align-items: center;
justify-content: space-between;
padding: 0 2rem;
position: relative;
box-shadow: 0 4px 20px rgba(161, 168, 179, 0.3);
backdrop-filter: blur(10px);
}
.logo-container {
display: flex;
align-items: center;
z-index: 100;
position: relative;
}
.logo-container img {
height: 45px;
width: auto;
filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
transition: transform 0.3s ease;
}
.logo-container img:hover {
transform: scale(1.05);
}
.nav-container {
display: flex;
align-items: center;
gap: 2rem;
z-index: 10;
}
.nav-container a {
color: var(--text-light);
text-decoration: none;
font-weight: 500;
font-size: clamp(0.9rem, 2vw, 1.1rem);
padding: 0.8rem 1.2rem;
border-radius: 25px;
transition: all 0.3s ease;
position: relative;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
white-space: nowrap;
}
.nav-container a:hover {
background: rgba(255, 255, 255, 0.2);
transform: translateY(-2px);
box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}
.nav-container a:active {
transform: translateY(0);
}
@media (max-width: 768px) {
header {
flex-direction: column;
padding: 1rem;
min-height: 120px;
gap: 1rem;
}
.nav-container {
flex-wrap: wrap;
justify-content: center;
gap: 1rem;
}
.nav-container a {
font-size: 0.9rem;
padding: 0.6rem 1rem;
}
}
@media (max-width: 480px) {
.nav-container {
gap: 0.5rem;
}
.nav-container a {
font-size: 0.8rem;
padding: 0.5rem 0.8rem;
}
}
footer {
background: var(--gradient-primary);
color: var(--text-light);
padding: 3rem 2rem 1.5rem;
margin-top: auto;
position: relative;
overflow: hidden;
}
footer::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.1) 0%, transparent 50%);
pointer-events: none;
}
.footer-content {
max-width: 1200px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
gap: 2rem;
position: relative;
z-index: 1;
}
.footer-section h3 {
color: var(--text-light);
margin-bottom: 1rem;
font-size: 1.3rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer-section p,
.footer-section a {
color: var(--text-light);
text-decoration: none;
margin-bottom: 0.5rem;
display: block;
transition: all 0.3s ease;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.footer-section a:hover {
color: var(--tertiary-color);
transform: translateX(5px);
}
.footer-contact {
background: rgba(255, 255, 255, 0.1);
padding: 1.5rem;
border-radius: 15px;
backdrop-filter: blur(5px);
}
.footer-bottom {
text-align: center;
margin-top: 2rem;
padding-top: 1.5rem;
border-top: 1px solid rgba(255, 255, 255, 0.3);
color: var(--text-light);
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-consent {
position: fixed;
bottom: 20px;
left: 20px;
right: 20px;
background: var(--gradient-primary);
color: var(--text-light);
padding: 1.5rem;
border-radius: 15px;
box-shadow: 0 8px 32px rgba(0,0,0,0.3);
z-index: 1000;
display: none;
backdrop-filter: blur(10px);
}
.cookie-consent.show {
display: block;
}
.cookie-consent p {
margin-bottom: 1rem;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-buttons {
display: flex;
gap: 1rem;
flex-wrap: wrap;
}
.cookie-btn {
background: rgba(255, 255, 255, 0.2);
color: var(--text-light);
border: 1px solid rgba(255, 255, 255, 0.3);
padding: 0.6rem 1.2rem;
border-radius: 25px;
cursor: pointer;
transition: all 0.3s ease;
text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
}
.cookie-btn:hover {
background: rgba(255, 255, 255, 0.3);
transform: translateY(-2px);
}
@media (max-width: 768px) {
.cookie-consent {
left: 10px;
right: 10px;
bottom: 10px;
}
.cookie-buttons {
justify-content: center;
}
}
.prep-page-wrapper {
width: 100%;
max-width: 1200px;
margin: 0 auto;
padding: 40px 20px;
}
.page-header-section {
text-align: center;
margin-bottom: 60px;
padding: 60px 30px;
background: linear-gradient(135deg, #EAEDEF 0%, #C6CBD4 100%);
border-radius: 20px;
position: relative;
overflow: hidden;
}
.page-header-section::before {
content: '';
position: absolute;
top: -50%;
right: -10%;
width: 200px;
height: 200px;
background: rgba(161, 168, 179, 0.3);
border-radius: 50%;
transform: rotate(45deg);
}
.main-page-title {
font-size: 3.2rem;
color: #2c3e50;
margin-bottom: 20px;
font-weight: 700;
position: relative;
z-index: 2;
}
.page-subtitle {
font-size: 1.4rem;
color: #5d6d7e;
line-height: 1.6;
max-width: 600px;
margin: 0 auto;
position: relative;
z-index: 2;
}
.content-sections-grid {
display: grid;
grid-template-columns: 1fr;
gap: 50px;
margin-top: 60px;
}
.prep-section-card {
background: white;
border-radius: 15px;
padding: 40px;
box-shadow: 0 8px 30px rgba(161, 168, 179, 0.2);
position: relative;
overflow: hidden;
transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.prep-section-card:hover {
transform: translateY(-5px);
box-shadow: 0 15px 45px rgba(161, 168, 179, 0.3);
}
.section-icon-area {
width: 80px;
height: 80px;
border-radius: 50%;
margin-bottom: 30px;
display: flex;
align-items: center;
justify-content: center;
font-size: 2.5rem;
color: white;
position: relative;
}
.mindset-section .section-icon-area {
background: linear-gradient(135deg, #A1A8B3 0%, #8892a1 100%);
}
.resources-section .section-icon-area {
background: linear-gradient(135deg, #C6CBD4 0%, #a8b0bc 100%);
}
.expectations-section .section-icon-area {
background: linear-gradient(135deg, #EAEDEF 0%, #d1d8e0 100%);
color: #2c3e50;
}
.section-title-main {
font-size: 2.4rem;
color: #2c3e50;
margin-bottom: 25px;
font-weight: 600;
line-height: 1.3;
}
.section-content-area {
line-height: 1.7;
color: #4a5568;
}
.section-intro-text {
font-size: 1.2rem;
margin-bottom: 30px;
color: #5d6d7e;
font-weight: 500;
}
.tips-list-container {
margin: 30px 0;
}
.preparation-tip {
display: flex;
align-items: flex-start;
margin-bottom: 20px;
padding: 20px;
background: #f8fafc;
border-radius: 10px;
border-left: 4px solid #A1A8B3;
}
.tip-marker {
width: 25px;
height: 25px;
border-radius: 50%;
background: #A1A8B3;
color: white;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
margin-right: 15px;
flex-shrink: 0;
font-size: 0.9rem;
}
.tip-content-text {
flex: 1;
}
.tip-title {
font-weight: 600;
color: #2c3e50;
margin-bottom: 8px;
font-size: 1.1rem;
}
.tip-description {
color: #5d6d7e;
line-height: 1.6;
}
.resources-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 25px;
margin: 30px 0;
}
.resource-item {
background: linear-gradient(135deg, #f8fafc 0%, #edf2f7 100%);
padding: 25px;
border-radius: 12px;
border: 2px solid #EAEDEF;
transition: all 0.3s ease;
}
.resource-item:hover {
border-color: #A1A8B3;
transform: scale(1.02);
}
.resource-title {
font-weight: 600;
color: #2c3e50;
margin-bottom: 12px;
display: flex;
align-items: center;
}
.resource-title::before {
content: '';
margin-right: 10px;
font-size: 1.2rem;
}
.resource-description {
color: #5d6d7e;
font-size: 0.95rem;
line-height: 1.5;
}
.expert-profile-section {
display: flex;
align-items: center;
background: linear-gradient(135deg, #A1A8B3 0%, #8892a1 100%);
padding: 30px;
border-radius: 15px;
margin: 40px 0;
color: white;
}
.expert-image-container {
width: 100px;
height: 100px;
border-radius: 50%;
overflow: hidden;
margin-right: 25px;
flex-shrink: 0;
border: 4px solid rgba(255, 255, 255, 0.3);
}
.expert-portrait {
width: 100%;
height: 100%;
object-fit: cover;
object-position: center;
}
.expert-content {
flex: 1;
}
.expert-quote {
font-style: italic;
font-size: 1.1rem;
line-height: 1.6;
margin-bottom: 15px;
}
.expert-name {
font-weight: 600;
font-size: 1rem;
}
.expert-role {
opacity: 0.9;
font-size: 0.9rem;
}
.journey-visual-section {
background-image: url('/pages/background_gallery/art_15.jpg');
background-size: cover;
background-position: center;
padding: 80px 40px;
border-radius: 20px;
position: relative;
margin: 50px 0;
text-align: center;
color: white;
}
.journey-visual-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(44, 62, 80, 0.7);
border-radius: 20px;
}
.journey-content {
position: relative;
z-index: 2;
max-width: 600px;
margin: 0 auto;
}
.journey-title {
font-size: 2.5rem;
margin-bottom: 25px;
font-weight: 700;
}
.journey-description {
font-size: 1.3rem;
line-height: 1.6;
opacity: 0.95;
}
.success-metrics-area {
background: linear-gradient(135deg, #EAEDEF 0%, #C6CBD4 100%);
padding: 40px;
border-radius: 15px;
margin: 40px 0;
}
.metrics-title {
text-align: center;
font-size: 2rem;
color: #2c3e50;
margin-bottom: 35px;
font-weight: 600;
}
.metrics-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 30px;
}
.metric-item {
text-align: center;
background: white;
padding: 25px;
border-radius: 12px;
box-shadow: 0 4px 15px rgba(161, 168, 179, 0.15);
}
.metric-number {
font-size: 2.5rem;
font-weight: 700;
color: #A1A8B3;
margin-bottom: 10px;
}
.metric-label {
color: #5d6d7e;
font-weight: 500;
}
.cta-section-bottom {
text-align: center;
margin-top: 60px;
padding: 50px 30px;
background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
border-radius: 20px;
color: white;
}
.cta-title {
font-size: 2.2rem;
margin-bottom: 20px;
font-weight: 600;
}
.cta-description {
font-size: 1.2rem;
margin-bottom: 35px;
opacity: 0.9;
line-height: 1.6;
}
.start-journey-button {
display: inline-block;
background: linear-gradient(135deg, #A1A8B3 0%, #8892a1 100%);
color: white;
padding: 18px 40px;
border-radius: 50px;
text-decoration: none;
font-weight: 600;
font-size: 1.1rem;
transition: all 0.3s ease;
border: none;
cursor: pointer;
position: relative;
z-index: 10;
}
.start-journey-button:hover {
background: linear-gradient(135deg, #8892a1 0%, #7a8490 100%);
transform: translateY(-2px);
box-shadow: 0 8px 25px rgba(161, 168, 179, 0.4);
}
@media (max-width: 768px) {
.prep-page-wrapper {
padding: 20px 15px;
}
.page-header-section {
padding: 40px 20px;
margin-bottom: 40px;
}
.main-page-title {
font-size: 2.4rem;
}
.page-subtitle {
font-size: 1.2rem;
}
.content-sections-grid {
gap: 30px;
margin-top: 40px;
}
.prep-section-card {
padding: 25px;
}
.section-title-main {
font-size: 1.8rem;
}
.expert-profile-section {
flex-direction: column;
text-align: center;
}
.expert-image-container {
margin-right: 0;
margin-bottom: 20px;
}
.journey-visual-section {
padding: 50px 25px;
}
.journey-title {
font-size: 2rem;
}
.journey-description {
font-size: 1.1rem;
}
.metrics-grid {
grid-template-columns: 1fr;
gap: 20px;
}
.cta-section-bottom {
padding: 35px 20px;
}
.cta-title {
font-size: 1.8rem;
}
}
@media (max-width: 480px) {
.main-page-title {
font-size: 2rem;
}
.section-title-main {
font-size: 1.6rem;
}
.preparation-tip {
flex-direction: column;
align-items: flex-start;
}
.tip-marker {
margin-bottom: 10px;
margin-right: 0;
}
.resources-grid {
grid-template-columns: 1fr;
}
}