* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #000;
    background-color: #fff;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: linear-gradient(to right, #000000, #3533cd);
    color: white;
}

.logo {
    font-size: 20px;
    font-weight: bold;
}
.logo-image {
    height: 100%;  /* Make image full height of logo container */
    width: auto;
    object-fit: contain;  /* Maintain aspect ratio */
}

.nav a {
    color: white;
    text-decoration: none;
    margin-left: 20px;
    font-weight: 500;
}

.nav a:hover {
    text-decoration: underline;
}

.main-section {
    padding: 40px;
}

.text-content {
    max-width: 600px;
    margin-bottom: 40px;
}

.text-content h1 {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 20px;
}

.text-content p {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-button {
    padding: 10px 20px;
    background: transparent;
    border: 2px solid black;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-button:hover {
    background: black;
    color: white;
}

.images {
    display: flex;
    gap: 0px;
    justify-content: center;
}

.images img {
    width: 100%;
    max-width: 1000px;
    max-height: 600px;

}

/* Responsive Design */
@media (max-width: 768px) {
    .main-section {
        padding: 20px;
    }

    .text-content h1 {
        font-size: 32px;
    }

    .images {
        flex-direction: column;
        align-items: center;
    }
}

.about-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: auto;
    background-color: #fff;
}

.about-section h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    font-weight: 600;
    margin-left: 100px;
}

.intro {
    font-size: 1.9rem;
    font-weight: bold;
    line-height: 1.6;
    margin-bottom: 40px;
    margin-left: 100px;
    margin-right: auto;
}

.content-wrapper {
    display: flex;
    flex-wrap: nowrap;
    /* Changed from wrap to nowrap */
    align-items: flex-start;
    gap: 30px;
}

.about-image {
    width: 45%;
    /* Adjusted from 100% to take less space */
    max-width: 500px;
    height: auto;
    border-radius: 6px;
    flex-shrink: 0;
    /* Prevent image from shrinking */
}

.content-text {
    /* New wrapper for text and button */
    flex: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px 0;
    margin-left: 60px;
    margin-bottom: 10px;
    gap: 20px;
    font-weight: bold;
}

.text-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    font-weight: 500;
    margin-bottom: 20px;
}

.discover-button {
    align-self: flex-start;
    /* Align button to the left */
    padding: 12px 20px;
    font-size: 1rem;
    background-color: transparent;
    border: 2px solid black;
    cursor: pointer;
    transition: all 0.3s ease;
}

.discover-button:hover {
    background-color: black;
    color: white;
}

@media (max-width: 768px) {
    .content-wrapper {
        flex-direction: column;
    }
}

.logo-image {
    height: 80px;
    /* Adjust this value based on your needs */
    width: auto;
    vertical-align: middle;
}
.main-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* About section adjustments - already has correct padding */
.about-section {
    padding: 50px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Services section adjustments */
.services-section {
    padding: 50px 20px;
    background-color: #EA4335;
    color: #000;
}

.services-section h1 {
    font-size: 5rem;
    margin-bottom: 30px;
    font-weight: 600;
    margin-left: 10px;
    position: relative;
    /* Add position relative */
}

.services-intro {
    max-width: 600px;
    font-size: 1.9rem;
    margin-bottom: 10px;
    font-weight: bold;
    margin-left: auto;
    margin-right: 10px;
    padding-bottom: 10px;
    line-height: 1.3;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 95px;
    max-width: 1250px;
    margin: 0 auto;
    padding: 0 50px;
    position: relative;
}

.services-grid::before {
    content: '';
    position: absolute;
    top: 0;
    /* Changed from -30px to 0 */
    left: 50px;
    right: 50px;
    height: 1px;
}

.service-item {
    display: flex;
    justify-content: space-between;
    padding: 30px 0 20px 0;
    /* Added top padding to create space below the line */
    border-top: 1px solid #000;
    max-width: 1100px;
    margin: 0 auto;
}

.service-item-content {
    flex: 0 0 700px;
    margin-top: 0;
    font-weight: bold;
    /* Removed negative margin since we're adjusting the line position */
}

.service-item h3 {
    font-size: 0.99rem;
    /* Increased by 10% from 0.9rem */
    margin-bottom: 10px;
    flex: 0 0 200px;
    position: relative;
    /* Add position relative */
}

.service-item-content {
    flex: 0 0 700px;
    margin-top: -10px;
    /* Move content up closer to the line */
}

.service-item h2 {
    font-size: 0.99rem;
    /* Increased by 10% from 0.9rem */
    margin-bottom: 15px;
    font-weight: 600;
}

.service-item p {
    font-size: 0.99rem;
    /* Increased by 10% from 0.9rem */
    line-height: 1.6;
}

@media (max-width: 768px) {
    .services-section h1 {
        font-size: 2rem;
    }

    .services-intro {
        font-size: 1rem;
    }
}

.approach-section {
    padding: 117px 18px;
    max-width: 1200px;
    margin: 0 auto;
    background-color: #fff;
}

.approach-section h1 {
    font-size: 3.8rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.approach-intro {
    font-size: 2.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 900px;
    font-weight: bold;
    line-height: 1.2;
}

.approach-detail {
    font-size: 0.8rem;
    line-height: 1.6;
    max-width: 600px;
    text-align: left;
    margin-left: auto;
    font-weight: bold;
}

@media (max-width: 768px) {
    .approach-section h1 {
        font-size: 2rem;
    }

    .approach-intro {
        font-size: 1rem;
    }

    .approach-detail {
        text-align: left;
    }
}

/* ... existing code ... */

.contact-section {
    padding: 50px 20px;
    background-color: #fbbc05;
    color: #fff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 300px;
    /* Reduced from 400px to bring form more to the left */
}

.contact-right {
    flex: 1;
    margin-top: 50px;
    /* Added margin to move content down */
    padding-right: 100px;
    /* Added padding to prevent form from stretching too wide */
}

.contact-header {
    flex: 0 0 auto;
    margin-top: 20px;
    /* Added margin to align better with the right content */
}

.contact-header h1 {
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 0;
    line-height: 1;
}

.contact-header h2 {
    font-size: 4rem;
    font-weight: 600;
    margin-top: 0;
    line-height: 1;
}

.contact-subtitle {
    font-size: 1rem;
    margin-bottom: 50px;
    font-weight: bold;
}

.contact-description {
    font-size: 1.9rem;
    line-height: 1.5;
    margin-bottom: 40px;
    font-weight: bold;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 60px;
    max-width: 600px;
    font-weight: bold;
    /* Added max-width to maintain form scale */
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background: transparent;
    border: none;
    border-bottom: 1px solid #fff;
    font-size: 1rem;
    outline: none;
    color: #fff;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #fff;
    opacity: 0.7;
}

.submit-button {
    padding: 12px 24px;
    background: #000;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 500;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #333;
}

@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
        gap: 30px;
    }

    .contact-header h1 {
        font-size: 4rem;
        font-weight: 100;
        /* Reduced from 800 to 600 */
        margin-bottom: 0;
        line-height: 1;
    }

    .contact-header h2 {
        font-size: 4rem;
        font-weight: 600;
        /* Reduced from 800 to 600 */
        margin-top: 0;
        line-height: 1;
    }

    .contact-subtitle,
    .contact-description {
        font-size: 1rem;
    }
}

.footer-section {
    padding: 50px 20px;
    background-color: #fff;
    border-top: 1px solid #000;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-left {
    flex: 1;
}

.footer-right {
    text-align: right;
}

.footer-logo h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 30px;
}

.footer-social {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.footer-social a {
    color: #000;
    text-decoration: none;
    font-size: 1.2rem;
}

.footer-contact {
    margin-bottom: 30px;
}

.footer-contact p {
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 15px;
}

.footer-links a {
    color: #000;
    text-decoration: none;
    margin-left: 20px;
    font-size: 0.9rem;
}

.footer-copyright {
    font-size: 0.8rem;
    color: #666;
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .footer-right {
        text-align: center;
        margin-top: 30px;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-links a {
        margin: 0 10px;
    }
}
@media (max-width: 768px) {
    .header {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px;
    }
  
    .nav {
      margin-top: 10px;
      display: flex;
      flex-wrap: wrap;
    }
  
    .nav a {
      margin: 10px 10px 0 0;
    }
  
    .about-section h1,
    .intro {
      margin-left: 0;
      font-size: 2rem;
    }
  
    .intro {
      font-size: 1.2rem;
    }
  
    .content-wrapper {
      flex-direction: column;
      gap: 20px;
    }
  
    .about-image {
      width: 100%;
      max-width: 100%;
    }
  
    .content-text {
      margin-left: 0;
    }
  
    .services-grid {
      padding: 0 20px;
    }
  
    .service-item {
      flex-direction: column;
      align-items: flex-start;
      padding: 20px 0;
    }
  
    .service-item-content {
      margin-top: 10px;
      flex: 1;
    }
  
    .contact-container {
      flex-direction: column;
      gap: 40px;
      padding: 0 10px;
    }
  
    .contact-right {
      padding-right: 0;
      margin-top: 0;
    }
  
    .contact-header h1,
    .contact-header h2 {
      font-size: 2rem;
    }
  
    .contact-description {
      font-size: 1.2rem;
    }
  
    .contact-form {
      gap: 30px;
    }
  
    .approach-section h1 {
      font-size: 2rem;
    }
  
    .approach-intro {
      font-size: 1rem;
    }
  
    .approach-detail {
      font-size: 0.9rem;
      margin-left: 0;
    }
  }
  