.page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #FFF5E6;
    color: #333;
  }
  
  .main-content {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
  }
  
  .hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 4rem 10%;
    background: linear-gradient(135deg, #FFA500, #FF8C00);
    min-height: 80vh;
  }
  
  .hero-content {
    flex: 1;
    color: #FFF;
  }
  
  .hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  }
  
  .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .cta-button {
    display: inline-block;
    background-color: #FFF;
    color: #FF6600;
    padding: 0.8rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .cta-button:hover {
    background-color: #FF6600;
    color: #FFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(0, 0, 0, 0.15);
  }
  
  .hero-3d {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  .orange-3d {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #FFA500, #FF6600);
    border-radius: 50%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite, pulse 2s ease-in-out infinite alternate;
  }
  
  .orange-3d::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, rgba(255,255,255,0) 70%);
    animation: rotate 12s linear infinite;
  }
  
  .orange-3d::after {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    width: 15%;
    height: 15%;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    filter: blur(5px);
  }
  
  @keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(5deg); }
  }
  
  @keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
  
  @keyframes pulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.05); }
  }
  
  .about-section, .services-section, .testimonial-section {
    padding: 4rem 10%;
    text-align: center;
  }
  
  .about-section h2, .services-section h2, .testimonial-section h2 {
    font-size: 2.5rem;
    color: #FF6600;
    margin-bottom: 2rem;
  }
  
  .about-grid, .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .about-item, .service-item {
    background-color: #FFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .about-item:hover, .service-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
  
  .about-item i, .service-icon i {
    font-size: 2.5rem;
    color: #FF6600;
    margin-bottom: 1rem;
  }
  
  .service-icon {
    width: 80px;
    height: 80px;
    background-color: #FFF5E6;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
  }
  
  .testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    background-color: #FFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .testimonial-item p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 1rem;
  }
  
  .testimonial-item cite {
    font-weight: bold;
    color: #FF6600;
  }
  
  .landing-footer {
    background-color: #000000;
    color: #ffffff;
    padding: 2rem 0;
    margin-top: auto;
  }
  
  .footer-content {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .footer-section {
    flex: 1;
    margin: 0 1rem;
    min-width: 200px;
  }
  
  .footer-section h3 {
    margin-bottom: 1rem;
  }
  
  .footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid #333;
  }
  
  .button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
  }
  
  .brutalist-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    color: #e5dede;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-right: 0.5rem;
  }
  
  .button-1 {
    background-color: #4B0082;
    border: 2px solid #8A2BE2;
    border-radius: 6px;
    box-shadow: 2px 2px 1px #000000;
  }
  
  .button-1:hover {
    background-color: #6A5ACD;
    border-color: #483D8B;
    transform: translate(-3px, -3px) rotate(1deg);
    box-shadow: 5px 5px 0 #000000, 7px 7px 10px rgba(138, 43, 226, 0.2);
  }
  
  .button-1::before,
  .button-1::after {
    content: "";
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      90deg,
      transparent,
      rgba(255, 255, 255, 0.1),
      transparent
    );
    transition: 0.6s;
  }
  
  .button-1::before {
    left: -100%;
  }
  .button-1::after {
    left: 100%;
  }
  
  .button-1:hover::before {
    animation: swipeRight 1.5s infinite;
  }
  .button-1:hover::after {
    animation: swipeLeft 1.5s infinite;
  }
  
  @keyframes swipeRight {
    100% {
      transform: translateX(200%) skew(-45deg);
    }
  }
  
  @keyframes swipeLeft {
    100% {
      transform: translateX(-200%) skew(-45deg);
    }
  }
  
  .brutalist-button:hover .openai-logo {
    transform: translateY(-10px);
  }
  
  .button-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1.1;
    text-align: center;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    z-index: 3;
  }
  
  .button-text span:first-child {
    font-size: 7px;
    font-weight: normal;
  }
  
  .button-text span:last-child {
    font-size: 10px;
  }
  
  .brutalist-button:hover .button-text {
    opacity: 1;
    max-height: 40px;
    margin-top: 4px;
  }
  
  .brutalist-button:hover .button-text {
    text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.3);
  }
  
  .brutalist-button:active .button-text {
    transform: scale(0.95);
  }
  
  .interactive-button {
    background-color: #FF6600;
    color: #FFF;
    border: none;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }
  
  .interactive-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(255, 102, 0, 0.3);
  }
  
  .interactive-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    background: rgba(255, 255, 255, 0.5);
    opacity: 0;
    border-radius: 100%;
    transform: scale(1, 1) translate(-50%);
    transform-origin: 50% 50%;
  }
  
  .interactive-button:hover::after {
    animation: ripple 1s ease-out;
  }
  
  @keyframes ripple {
    0% {
      transform: scale(0, 0);
      opacity: 1;
    }
    20% {
      transform: scale(25, 25);
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: scale(40, 40);
    }
  }
  
  .service-item {
    position: relative;
    z-index: 1;
    overflow: hidden;
  }
  
  .service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #FF6600, #FFA500);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
  }
  
  .service-item:hover::before {
    opacity: 1;
  }
  
  .service-item:hover {
    color: #FFF;
  }
  
  .service-item:hover .service-icon {
    background-color: #FFF;
  }
  
  .service-item:hover .service-icon i {
    color: #FF6600;
  }
  
  .process-section {
    padding: 4rem 10%;
    text-align: center;
    background-color: #FFF;
  }
  
  .process-section h2 {
    font-size: 2.5rem;
    color: #FF6600;
    margin-bottom: 2rem;
  }
  
  .process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .process-item {
    background-color: #FFF5E6;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .process-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
  
  .process-icon {
    width: 60px;
    height: 60px;
    background-color: #FF6600;
    color: #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: bold;
  }
  
  .testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
  }
  
  .testimonial-item {
    background-color: #FFF;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .testimonial-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
  }
  