/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item,
.legal-item,
.clarity-item,
.philosophy-item,
.format-item,
.team-member,
.collaboration-item,
.why-surobmi-item,
.process-step {
    animation: fadeInUp 0.6s ease forwards;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Bruno Ace', cursive;
    font-weight: 400;
}

h1 {
    font-size: 2rem;
    color: #333;
}

h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: #333;
}

p {
    margin-bottom: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
    text-align: center;
}

.btn-primary {
    background-color: #d49c5a;
    color: white;
}

.btn-primary:hover {
    background-color: #c8915a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 156, 90, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #d49c5a;
    border: 2px solid #d49c5a;
}

.btn-secondary:hover {
    background-color: #d49c5a;
    color: white;
    transform: translateY(-2px);
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: white;
    border: 2px solid #d49c5a;
    border-radius: 20px;
    padding: 30px;
    z-index: 1000;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    display: flex;
    gap: 30px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cookie-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: #333;
    font-family: 'Bruno Ace', cursive;
}

.cookie-content p {
    margin-bottom: 8px;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.cookie-subtitle {
    font-weight: 600;
    color: #333 !important;
    font-size: 14px !important;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 300px;
}

.btn-accept {
    background-color: #d49c5a;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-accept:hover {
    background-color: #c8915a;
    transform: translateY(-1px);
}

.btn-necessary {
    background-color: transparent;
    color: #666;
    border: 2px solid #ddd;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

.btn-necessary:hover {
    background-color: #f5f5f5;
    border-color: #ccc;
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-brand {
    text-decoration: none;
}

.nav-brand h1 {
    font-family: 'Bruno Ace', cursive;
    font-size: 2.2rem;
    color: #333;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 1rem;
}

.nav-link:hover {
    color: #d49c5a;
}

.burger-menu {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f9f6f1 0%, #fdfcfa 50%, #f8f5f0 100%);
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.8rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Bruno Ace', cursive;
}

.hero-text p {
    font-size: 1.1rem;
    margin-bottom: 2.5rem;
    color: #666;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: white;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #333;
    font-family: 'Bruno Ace', cursive;
}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 4rem;
}

.service-item {
    background: #f9f9f9;
 
    border-radius: 12px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #eee;
}

.service-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-color: #d49c5a;
}

.service-item h3 {
    margin-bottom: 1.2rem;
    color: #333;
    font-size: 1.3rem;
}

.service-item p {
    color: #666;
    line-height: 1.7;
}

.services-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
}

.services-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
}

.services-images img:hover {
    transform: scale(1.05);
}

/* Legal Section */
.legal-section {
    padding: 100px 0;
    background: #f9f6f1;
}

.legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.legal-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.legal-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.legal-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.legal-item h3 {
    padding: 1.5rem 1rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 16px;
    word-break: break-all;
}

.legal-item p {
    padding: 0 1rem 2rem;
    line-height: 1.7;
    font-size: 14px;
}

/* Clarity Section */
.clarity-section {
    padding: 100px 0;
    background: white;
}

.clarity-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.clarity-item {
    padding: 2rem;
    border-left: 5px solid #d49c5a;
    background: #f9f9f9;
    border-radius: 0 10px 10px 0;
    transition: all 0.3s ease;
}

.clarity-item:hover {
    background: #f5f5f5;
    border-left-width: 8px;
}

.clarity-item h3 {
    color: #333;
    margin-bottom: 1rem;
    word-break: break-all;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: #f9f6f1;
}

.process-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.process-text h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.process-text h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #d49c5a;
    font-size: 1.3rem;
}

.process-text p {
    line-height: 1.7;
}

.process-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Consultation Section */
.consultation-section {
    padding: 100px 0;
    background: white;
}

.consultation-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.consultation-text h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.consultation-text h3 {
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #d49c5a;
    font-size: 1.3rem;
}

.consultation-text p {
    line-height: 1.7;
}

.consultation-image img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: #f9f6f1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    margin-bottom: 2rem;
    font-size: 2.2rem;
}

.contact-info > p {
    margin-bottom: 3rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.contact-details {
    display: grid;
    gap: 2rem;
}

.contact-info-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-item h4 {
    color: #d49c5a;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.contact-info-item p {
    margin-bottom: 0;
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    margin-bottom: 2rem;
    font-size: 1.5rem;
    color: #333;
}

.form-group {
    margin-bottom: 1.8rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.8rem;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #eee;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    transition: all 0.3s ease;
    font-size: 14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d49c5a;
    box-shadow: 0 0 0 3px rgba(212, 156, 90, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    line-height: 1.5;
    margin-bottom: 0;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkbox-group a {
    color: #d49c5a;
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* Thank You Page */
.thank-page {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f9f6f1 0%, #fdfcfa 50%, #f8f5f0 100%);
}

.thank-content {
    text-align: center;
    max-width: 700px;
}

.thank-content h1 {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Bruno Ace', cursive;
    line-height: 1.2;
}

.thank-content p {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #666;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 3rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-content p {
    color: #ccc;
    margin-bottom: 0;
}

.footer-links {
    display: flex;
    gap: 2.5rem;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-links a:hover {
    color: #d49c5a;
}

/* Responsive Design */
@media (max-width: 768px) {
    .burger-menu {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 3rem;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .nav-link {
        font-size: 1.3rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-text h2 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }

    .services-images {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid, .legal-grid {
         grid-template-columns: repeat(2, 1fr);
    }

    .process-content,
    .consultation-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .consultation-content .consultation-image {
        order: -1;
    }

    .footer-content {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .cookie-consent {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-buttons {
        min-width: auto;
    }

    .thank-content h1 {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-form {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .navbar {
        padding: 1rem 15px;
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-text h2 {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .services, .legal-section, .clarity-section, 
    .process-section, .consultation-section, .contact-section {
        padding: 60px 0;
    }

    .services-grid,
    .legal-grid,
    .clarity-grid {
        grid-template-columns: 1fr;
    }

    .services-images {
        grid-template-columns: 1fr;
    }

    .btn {
        width: 100%;
        padding: 16px 20px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 20px;
    }

    .thank-content h1 {
        font-size: 2.2rem;
    }

    .thank-content p {
        font-size: 1.1rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 12px 14px;
    }
}

/* About Page Styles */

/* About Hero Section */
.about-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f9f6f1 0%, #fdfcfa 50%, #f8f5f0 100%);
}

.about-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Bruno Ace', cursive;
}

.about-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    text-align: left;
}

.about-hero-content .btn {
    margin-top: 1rem;
}

/* Philosophy Section */
.philosophy-section {
    padding: 100px 0;
    background: white;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.philosophy-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.philosophy-item:hover {
    transform: translateY(-8px);
}

.philosophy-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.philosophy-item h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.philosophy-item p {
    color: #666;
    line-height: 1.7;
}

/* Integration Section */
.integration-section {
    padding: 100px 0;
    background: #f9f6f1;
}

/* Formats Section */
.formats-section {
    padding: 100px 0;
    background: white;
}

.formats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.format-item {
    background: #f9f9f9;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.format-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.format-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.format-item h3 {
    padding: 1.5rem 2rem 1rem;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
    color: #333;
}

.format-item p {
    padding: 0 2rem 2rem;
    line-height: 1.7;
    color: #666;
}

/* Trust Section */
.trust-section {
    padding: 100px 0;
    background: #f9f6f1;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 4rem;
    margin-top: 4rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.team-member img {
    width: 100%;
  
  
    object-fit: cover;
    margin-bottom: 1.5rem;
    border: 4px solid #d49c5a;
}

.team-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #d49c5a;
}

.team-info p {
    margin-bottom: 1.2rem;
    line-height: 1.7;
    color: #666;
}

.team-info p:last-child {
    font-style: italic;
    color: #333;
    border-left: 4px solid #d49c5a;
    padding-left: 1rem;
    margin-top: 1.5rem;
}

/* Active navigation link */
.nav-link.active {
    color: #d49c5a;
    font-weight: 600;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
    .about-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .about-hero-content p {
        text-align: center;
    }
    
    .philosophy-grid,
    .formats-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .team-member {
        padding: 2rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .about-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .philosophy-section,
    .integration-section,
    .formats-section,
    .trust-section {
        padding: 60px 0;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .team-member img {
        width: 100px;
        height: 100px;
    }
}

/* Internship Page Styles */

/* Internship Hero Section */
.internship-hero {
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #f9f6f1 0%, #fdfcfa 50%, #f8f5f0 100%);
}

.internship-hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.internship-hero-content h1 {
    font-size: 3rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Bruno Ace', cursive;
}

.internship-hero-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.8;
    text-align: left;
}

/* Collaboration Section */
.collaboration-section {
    padding: 100px 0;
    background: white;
}

.collaboration-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.collaboration-item {
    text-align: center;
    transition: transform 0.3s ease;
}

.collaboration-item:hover {
    transform: translateY(-8px);
}

.collaboration-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.collaboration-item h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
    text-align: left;
}

.collaboration-item p {
    color: #666;
    line-height: 1.7;
    text-align: left;
}

/* Why Surobmi Section */
.why-surobmi-section {
    padding: 100px 0;
    background: #f9f6f1;
}

.why-surobmi-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.why-surobmi-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    background: white;
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.why-surobmi-item:hover {
    transform: translateY(-5px);
}

.why-surobmi-item:nth-child(even) {
    direction: rtl;
}

.why-surobmi-item:nth-child(even) .why-content {
    direction: ltr;
}

.why-surobmi-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 12px;
}

.why-content h3 {
    margin-bottom: 1.5rem;
    color: #333;
    font-size: 1.4rem;
    line-height: 1.3;
}

.why-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Process Section for Internship */
.process-section-intern {
    padding: 100px 0;
    background: white;
}

.process-steps {
    margin-top: 4rem;
}

.process-step {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 5px solid #d49c5a;
    transition: all 0.3s ease;
}

.process-step:hover {
    background: #f5f5f5;
    border-left-width: 8px;
    transform: translateX(5px);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #d49c5a;
    font-family: 'Bruno Ace', cursive;
    min-width: 60px;
    line-height: 1;
}

.step-content h3 {
    margin-bottom: 1rem;
    color: #333;
    font-size: 1.3rem;
}

.step-content p {
    color: #666;
    line-height: 1.7;
    font-size: 1rem;
}

/* Responsive Design for Internship Page */
@media (max-width: 768px) {
    .internship-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .internship-hero-content p {
        text-align: center;
    }
    
    .collaboration-grid {
        grid-template-columns: 1fr;
    }
    
    .why-surobmi-item {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .why-surobmi-item:nth-child(even) {
        direction: ltr;
    }
    
    .why-surobmi-item img {
        height: 250px;
    }
    
    .collaboration-item h3,
    .collaboration-item p {
        text-align: center;
    }
    
    .process-step {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .step-number {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .internship-hero {
        padding: 120px 0 80px;
    }
    
    .internship-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .collaboration-section,
    .why-surobmi-section,
    .process-section-intern {
        padding: 60px 0;
    }
    
    .why-surobmi-item {
        padding: 1.5rem;
    }
    
    .collaboration-item img,
    .why-surobmi-item img {
        height: 200px;
    }
    
    .process-step {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .step-number {
        font-size: 2rem;
    }
}

/* Loading animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-item,
.legal-item,
.clarity-item {
    animation: fadeInUp 0.6s ease forwards;
}

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                