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

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3 {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 2rem;
    text-align: center;
    display: none; /* Hidden initially, shown via JS */
}

.cookie-consent h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cookie-consent p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.cookie-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.cookie-btn {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    width: 200px;
}

.accept {
    background-color: #6c5ce7;
    color: white;
}

.refuse {
    background-color: #6c5ce7;
    color: white;
    opacity: 0.8;
}

.cookie-btn:hover {
    transform: translateY(-3px);
}

/* Header Styles */
header {
    background-color: #6c5ce7;
    color: white;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    letter-spacing: 1px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    transition: opacity 0.3s ease;
}

nav ul li a:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero {
    background-color: #6c5ce7;
    color: white;
    padding: 4rem 0;
}

.hero-content {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    align-items: center;
}

.hero-text {
    flex: 1;
    padding-right: 2rem;
}

.hero-text h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-text p {
    margin-bottom: 2rem;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.cta-button {
    background-color: white;
    color: #6c5ce7;
    padding: 0.8rem 1.5rem;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* Difference Section */
.difference {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.difference h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.section-intro {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.stats-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-box {
    flex: 1;
    min-width: 250px;
    background-color: #f0f0f0;
    padding: 2rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.stat-box:nth-child(1) {
    background-color: #6c5ce7;
    color: white;
}

.stat-box h3 {
    font-size: 1.8rem;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Strategic Pillars Section */
.strategic-pillars {
    padding: 5rem 1.5rem;
    background-color: #6c5ce7;
    color: white;
    text-align: center;
}

.strategic-pillars h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.pillars-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.pillar-box {
    flex: 1;
    min-width: 300px;
    text-align: left;
    padding: 0 1rem;
}

.pillar-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
}

.pillar-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.pillar-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Progression Model Section */
.progression-model {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.model-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.model-text {
    flex: 1;
    min-width: 300px;
}

.model-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.model-image {
    flex: 1;
    min-width: 300px;
}

/* Insights Section */
.insights {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.insights h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.insights-container {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
}

.insight-box {
    flex: 1;
    min-width: 300px;
    text-align: left;
}

.insight-image {
    height: 200px;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.insight-box:hover .insight-image img {
    transform: scale(1.05);
}

.insight-box h3 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background-color: #f9f9f9;
}

.contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.map {
    flex: 1;
    min-width: 300px;
}

.map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 2rem;
    background-color: #6c5ce7;
    color: white;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.office-locations {
    margin-bottom: 2rem;
}

.location {
    margin-bottom: 1.5rem;
}

.location p {
    margin-bottom: 0.3rem;
}

.contact-form-fields {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form-fields input {
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
}

.submit-btn {
    background-color: #6c5ce7;
    color: white;
    padding: 0.8rem;
    font-weight: bold;
    border: 2px solid white;
    border-radius: 4px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: white;
    color: #6c5ce7;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 2rem 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.footer-logo {
    font-weight: bold;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

/* About Page Styles */
.about-section {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-intro h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

/* How We Work Section */
.how-we-work {
    padding: 5rem 1.5rem;
    background-color: #6c5ce7;
    color: white;
    text-align: center;
}

.how-we-work h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.work-approach-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.approach-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 1rem;
}

.approach-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.approach-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.approach-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Our Philosophy Section */
.our-philosophy {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.philosophy-image {
    flex: 1;
    min-width: 300px;
}

.philosophy-text {
    flex: 1;
    min-width: 300px;
}

.philosophy-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

/* Team Insights Section */
.team-insights {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.team-insights h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2rem;
}

.team-member {
    display: flex;
    text-align: left;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.member-image {
    width: 30%;
    max-width: 150px;
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
    flex: 1;
}

.member-info h3 {
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
    color: #6c5ce7;
}

.member-info h4 {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #555;
    font-weight: normal;
}

.member-info p {
    font-size: 0.9rem;
}

/* Internship Page Styles */
.internship-intro {
    padding: 5rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.intro-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.intro-text {
    flex: 1;
    min-width: 300px;
}

.intro-text h1 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
}

.intro-text p {
    margin-bottom: 1.5rem;
}

.intro-image {
    flex: 1;
    min-width: 300px;
}

/* Why Different Section */
.why-different {
    padding: 5rem 1.5rem;
    background-color: #fff;
    text-align: center;
}

.why-different h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.differences-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
}

.difference-box {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #6c5ce7;
    color: white;
    text-align: left;
    border-radius: 4px;
}

.difference-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Experience Section */
.experience-section {
    padding: 5rem 1.5rem;
    background-color: #6c5ce7;
    color: white;
    text-align: center;
}

.experience-section h2 {
    font-size: 2.2rem;
    margin-bottom: 3rem;
}

.experience-steps {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-box {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 0 1rem;
}

.step-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.step-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.step-box h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

/* Intern Contact Section */
.intern-contact {
    padding: 0;
    background-color: #fff;
}

.intern-contact-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.office-building {
    flex: 1;
    min-width: 300px;
}

.office-building img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-form-section {
    flex: 1;
    min-width: 300px;
    padding: 2.5rem;
    background-color: #6c5ce7;
    color: white;
}

.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.intern-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-row input {
    flex: 1;
}

.intern-form input,
.intern-form textarea {
    padding: 0.8rem;
    border: none;
    border-radius: 4px;
}

.intern-form textarea {
    min-height: 100px;
    resize: vertical;
}

@media (max-width: 480px) {
    .hero-text h1 {
        font-size: 2rem;
    }
    
    .difference h2,
    .strategic-pillars h2,
    .model-text h2,
    .insights h2,
    .contact-form h2 {
        font-size: 1.8rem;
    }
    
    .cookie-consent h2 {
        font-size: 1.8rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
}