/* Fonts */
@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Roboto';
    src: url('../fonts/Roboto-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #059669;
    --secondary-color: #10b981;
    --accent-color: #34d399;
    --text-dark: #1f2937;
    --text-medium: #4b5563;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --blue-light: #e0f2fe;
    --blue-medium: #bae6fd;
    --purple-light: #f3e8ff;
    --purple-medium: #e9d5ff;
    --purple-dark: #a855f7;
    --purple-darker: #9333ea;
    --teal-light: #ccfbf1;
    --pink-light: #fce7f3;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background: linear-gradient(to bottom, #dbeafe 0%, #c7d2fe 100%);
    font-size: 16px;
    min-height: 100vh;
}

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

/* Header */
header {
    background: var(--bg-white);
    color: var(--text-dark);
    padding: 0.75rem 0;
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--border-color);
}

header .container {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.logo {
    position: absolute;
    left: 0;
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
}

/* Menu Toggle Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: absolute;
    right: 0;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--text-dark);
    border-radius: 3px;
    transition: var(--transition);
    transform-origin: center;
}

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

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

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

nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    flex-wrap: wrap;
    justify-content: center;
}

nav a {
    color: var(--text-medium);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    padding: 0.5rem 0;
    position: relative;
    font-size: 1.1rem;
}

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

nav a:hover,
nav a:focus {
    color: var(--primary-color);
}

nav a:hover::after,
nav a:focus::after {
    width: 100%;
}

/* Main Content */
main {
    padding: 3rem 0;
    min-height: 60vh;
}

.hero {
    text-align: center;
    padding: 0;
    margin-bottom: 3rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
    overflow: hidden;
}

.hero-image-fullwidth {
    width: calc(100% + 40px);
    margin: 0 -20px;
    padding: 0;
    overflow: hidden;
    display: block;
}

.hero-image-fullwidth img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 730px;
}

.hero h1,
.hero p {
    padding: 0 2rem;
}

.hero h1 {
    padding-top: 4rem;
}

.hero p {
    padding-bottom: 4rem;
}

.hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
    font-weight: 400;
}

.content {
    padding: 3rem 2.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    margin-bottom: 2rem;
}

.content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-medium), transparent);
    border-radius: 1px;
}

.content h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content p:last-child {
    margin-bottom: 0;
}

.content strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* Philosophy Box */
.philosophy-box {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(to right, var(--teal-light) 0%, var(--pink-light) 100%);
    border: 2px solid var(--blue-medium);
    border-radius: 15px;
}

.philosophy-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.philosophy-box p {
    font-size: 1.05rem;
    margin-bottom: 0;
    color: var(--text-dark);
}

/* Benefits Section */
.benefits-section {
    margin-top: 3rem;
    padding: 3rem 2.5rem;
    background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 50%, #bbf7d0 100%);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--primary-color);
}

.benefits-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.benefits-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-medium), transparent);
    border-radius: 1px;
}

.benefits-section > p {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
}

.steps-subtitle {
    font-size: 1.6rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
    text-align: center;
    margin-top: 0.5rem;
}

.steps-grid {
    display: flex !important;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 600px;
    margin: 2rem auto 0;
    align-items: stretch;
}

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

.card {
    background: linear-gradient(to bottom, var(--purple-darker) 0%, var(--purple-dark) 100%);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    text-align: center;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.step-number {
    position: relative;
    top: 0;
    left: 0;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #ffffff;
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-darker);
    font-size: 0.95rem;
    font-weight: 700;
    font-family: 'Roboto', sans-serif;
    white-space: nowrap;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
    text-transform: uppercase;
    margin: 0 auto 1rem auto;
    width: fit-content;
}

.card h3 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    margin-top: 0.5rem;
}

.card p {
    color: #ffffff;
    margin-bottom: 0.8rem;
    line-height: 1.6;
    font-size: 1rem;
    opacity: 0.95;
}

.card p:last-child {
    margin-bottom: 0;
}

.card p strong {
    font-weight: 600;
    font-size: 1.05rem;
    display: block;
    margin-bottom: 0.5rem;
    opacity: 1;
}

/* Consultation Form Section */
.consultation-section {
    margin-top: 3rem;
    padding: 3rem 2.5rem;
    background: var(--bg-white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}

.consultation-section h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
    letter-spacing: -0.3px;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.consultation-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 2px;
    background: linear-gradient(90deg, var(--blue-medium), transparent);
    border-radius: 1px;
}

.consultation-subtitle {
    font-size: 1.5rem;
    color: var(--text-dark);
    font-weight: 600;
    text-align: center;
    margin-bottom: 1rem;
    margin-top: 0.5rem;
}

.consultation-section > p {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
}

.consultation-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    background: var(--bg-white);
    transition: var(--transition);
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

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

.submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    font-family: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

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

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

#form-message {
    padding: 1rem;
    border-radius: 8px;
    font-weight: 500;
    text-align: center;
}

#form-message.success {
    background-color: #d1fae5;
    color: #059669;
    border: 1px solid #10b981;
}

#form-message.error {
    background-color: #fee2e2;
    color: #dc2626;
    border: 1px solid #ef4444;
}

/* Footer */
footer {
    background: var(--bg-light);
    color: var(--text-medium);
    text-align: center;
    padding: 2.5rem 0;
    margin-top: 4rem;
    border-top: 1px solid var(--border-color);
}

footer p {
    margin: 0;
    font-size: 0.95rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        background: linear-gradient(to bottom, #dbeafe 0%, #c7d2fe 100%);
    }
    
    header {
        padding: 0.6rem 0;
    }
    
    header .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .logo {
        position: static;
    }
    
    .logo-img {
        height: 45px;
    }
    
    nav {
        flex: none;
    }
    
    .menu-toggle {
        display: flex;
        position: static;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    
    nav.active {
        max-height: 400px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1rem 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
    }
    
    nav a::after {
        display: none;
    }
    
    main {
        padding: 2rem 0;
    }
    
    .hero {
        padding: 0;
        margin-bottom: 2rem;
        border-radius: 15px;
    }
    
    .hero-image-fullwidth img {
        max-height: 480px;
    }
    
    .hero h1 {
        font-size: 2rem;
        padding-top: 3rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-bottom: 0;
    }
    
    .hero p {
        font-size: 1.1rem;
        padding-left: 2rem;
        padding-right: 2rem;
        padding-top: 0;
        padding-bottom: 3rem;
    }
    
    .content {
        padding: 2rem 2rem;
        border-radius: 15px;
    }
    
    .content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .content h3 {
        font-size: 1.3rem;
    }
    
    .content p {
        font-size: 1rem;
        text-align: left;
        margin-bottom: 1.3rem;
    }
    
    .philosophy-box {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .card {
        padding: 2rem;
        min-height: 180px;
    }
    
    .benefits-section {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .benefits-section h2 {
        font-size: 1.8rem;
    }
    
    .consultation-section {
        padding: 2rem 1.5rem;
        border-radius: 15px;
    }
    
    .consultation-section h2 {
        font-size: 1.8rem;
    }
    
    .consultation-subtitle {
        font-size: 1.3rem;
    }
    
    .consultation-section > p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    header {
        padding: 0.6rem 0;
    }
    
    .logo {
        position: static;
    }
    
    .logo-img {
        height: 40px;
    }
    
    nav {
        flex: none;
    }
    
    .menu-toggle {
        display: flex;
        width: 28px;
        height: 28px;
        position: static;
    }
    
    nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        box-shadow: var(--shadow-lg);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease-in-out;
    }
    
    nav.active {
        max-height: 400px;
    }
    
    nav ul {
        flex-direction: column;
        gap: 0;
        width: 100%;
        padding: 1rem 0;
    }
    
    nav li {
        width: 100%;
        border-bottom: 1px solid var(--border-color);
    }
    
    nav li:last-child {
        border-bottom: none;
    }
    
    nav a {
        display: block;
        text-align: left;
        padding: 1rem 1.5rem;
        width: 100%;
    }
    
    nav a::after {
        display: none;
    }
    
    .hero {
        padding: 0;
    }
    
    .hero-image-fullwidth {
        width: calc(100% + 30px);
        margin: 0 -15px;
    }
    
    .hero-image-fullwidth img {
        max-height: 250px;
    }
    
    .hero h1 {
        font-size: 1.7rem;
        margin-bottom: 1rem;
        padding-top: 2.5rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-bottom: 0;
    }
    
    .hero p {
        font-size: 1rem;
        padding-left: 1.5rem;
        padding-right: 1.5rem;
        padding-top: 0;
        padding-bottom: 2.5rem;
    }
    
    .content {
        padding: 1.5rem 1.5rem !important;
    }
    
    .content h2 {
        font-size: 1.6rem;
    }
    
    .content h3 {
        font-size: 1.2rem;
    }
    
    .content p {
        font-size: 0.95rem;
    }
    
    .philosophy-box {
        padding: 1.2rem;
    }
    
    .card {
        padding: 1.5rem;
        min-height: 160px;
    }
    
    .card h3 {
        font-size: 1.3rem;
    }
    
    .consultation-section {
        padding: 2rem 1rem;
        border-radius: 15px;
    }
    
    .consultation-section h2 {
        font-size: 1.6rem;
    }
    
    .consultation-subtitle {
        font-size: 1.2rem;
    }
    
    .consultation-section > p {
        font-size: 0.95rem;
    }
    
    .form-group input,
    .form-group textarea {
        font-size: 0.95rem;
    }
    
    .submit-btn {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }
    
    footer {
        padding: 2rem 0;
    }
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Print styles */
@media print {
    header,
    footer,
    nav {
        display: none;
    }
    
    main {
        padding: 0;
    }
    
    .hero,
    .content {
        box-shadow: none;
        border: none;
    }
}
