/* Base Styles */
:root {
    --primary-color: #0071e3;
    --primary-dark: #0051a2;
    --primary-light: #47a3ff;
    --secondary-color: #1d1d1f;
    --light-color: #f5f5f7;
    --dark-color: #000000;
    --gray-color: #86868b;
    --light-gray: #e8e8ed;
    --box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    --card-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    --transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius: 12px;
    --gradient-primary: linear-gradient(135deg, #0071e3, #47a3ff);
    --gradient-dark: linear-gradient(135deg, #1d1d1f, #313133);
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }
  
  body {
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.5;
    color: var(--secondary-color);
    background-color: var(--light-color);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
  }
  
  .section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
  }
  
  /* Typography */
  h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
  }
  
  .section-tag {
    display: inline-block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--dark-color);
  }
  
  .section-description {
    font-size: 1.1rem;
    color: var(--gray-color);
    max-width: 700px;
    margin: 0 auto 60px 0;
  }
  
  /* Buttons */
  .primary-button, .secondary-button, .cta-button, .submit-button, .view-project {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    position: relative;
    overflow: hidden;
  }
  
  .primary-button, .cta-button, .submit-button {
    background-color: var(--primary-color);
    color: white;
  }
  
  .primary-button:hover, .cta-button:hover, .submit-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 113, 227, 0.3);
  }
  
  .secondary-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .secondary-button:hover {
    background-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  }
  
  .primary-button i, .secondary-button i {
    margin-left: 8px;
    transition: transform 0.3s ease;
  }
  
  .primary-button:hover i, .secondary-button:hover i {
    transform: translateX(5px);
  }
  
  .button-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.6s ease-out, height 0.6s ease-out;
  }
  
  .submit-button:hover .button-effect {
    width: 300px;
    height: 300px;
  }
  
  /* Header */
  #header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
  }
  
  #header.scrolled {
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 15px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  }
  
  #header.scrolled .logo a,
  #header.scrolled .nav-links a {
    color: var(--dark-color);
  }
  
  #header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .logo a {
    font-size: 1.8rem;
    font-weight: 600;
    color: white;
    transition: var(--transition);
  }
  
  nav {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    margin-right: 30px;
  }
  
  .nav-links li {
    margin: 0 20px;
  }
  
  .nav-links a {
    color: white;
    font-weight: 400;
    transition: var(--transition);
    position: relative;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
  }
  
  .nav-links a:hover {
    color: var(--primary-color);
  }
  
  .nav-links a:hover::after {
    width: 100%;
  }
  
  .hamburger {
    display: none;
    cursor: pointer;
  }
  
  .hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: var(--transition);
  }
  
  #header.scrolled .hamburger span {
    background-color: var(--dark-color);
  }
  
  /* Hero Section */
  #hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    color: white;
    background-color: var(--dark-color);
    overflow: hidden;
  }
  
  .hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
  }
  
  .hero-text {
    max-width: 600px;
    z-index: 2;
  }
  
  .hero-text h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
  }
  
  .hero-text h1 span {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
  }
  
  .hero-text p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
  }
  
  .hero-buttons {
    display: flex;
    gap: 20px;
  }
  
  .hero-visual {
    position: relative;
    width: 500px;
    height: 500px;
    z-index: 1;
  }
  
  .sphere-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 300px;
    height: 300px;
    perspective: 1000px;
  }
  
  .sphere {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: rotate 20s linear infinite;
    background: radial-gradient(circle at center, rgba(71, 163, 255, 0.2), rgba(0, 113, 227, 0.5));
    border-radius: 50%;
    box-shadow: 
      0 0 60px rgba(0, 113, 227, 0.3),
      inset 0 0 40px rgba(255, 255, 255, 0.1);
  }
  
  @keyframes rotate {
    0% {
      transform: rotateY(0) rotateX(0);
    }
    100% {
      transform: rotateY(360deg) rotateX(360deg);
    }
  }
  
  .floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  .floating-element {
    position: absolute;
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
  }
  
  #element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
  }
  
  #element-2 {
    top: 70%;
    left: 15%;
    animation-delay: 1s;
  }
  
  #element-3 {
    top: 30%;
    right: 10%;
    animation-delay: 2s;
  }
  
  #element-4 {
    top: 80%;
    right: 15%;
    animation-delay: 3s;
  }
  
  #element-5 {
    top: 40%;
    left: 30%;
    animation-delay: 4s;
  }
  
  #element-6 {
    top: 60%;
    right: 30%;
    animation-delay: 5s;
  }
  
  @keyframes float {
    0%, 100% {
      transform: translateY(0) rotate(0deg);
    }
    50% {
      transform: translateY(-20px) rotate(10deg);
    }
  }
  
  .hero-gradient {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 30%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    z-index: 1;
  }
  
  #particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
  }
  
  .scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 20px;
    position: relative;
  }
  
  .wheel {
    width: 4px;
    height: 10px;
    background-color: white;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
  }
  
  @keyframes scroll {
    0% {
      opacity: 1;
      transform: translateX(-50%) translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateX(-50%) translateY(20px);
    }
  }
  
  .arrow {
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: -5px;
    animation: arrow 2s infinite;
  }
  
  .arrow span:nth-child(2) {
    animation-delay: -0.2s;
  }
  
  .arrow span:nth-child(3) {
    animation-delay: -0.4s;
  }
  
  @keyframes arrow {
    0% {
      opacity: 0;
      transform: rotate(45deg) translate(-5px, -5px);
    }
    50% {
      opacity: 1;
    }
    100% {
      opacity: 0;
      transform: rotate(45deg) translate(5px, 5px);
    }
  }
  
  /* Reveal Text Animation */
  .reveal-text {
    opacity: 0;
    transform: translateY(30px);
    animation: revealText 1s forwards;
  }
  
  .delay-1 {
    animation-delay: 0.3s;
  }
  
  .delay-2 {
    animation-delay: 0.6s;
  }
  
  @keyframes revealText {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Services Section */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
  }
  
  .service-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px 30px;
    box-shadow: var(--card-shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
  }
  
  .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition);
  }
  
  .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  }
  
  .service-card:hover::before {
    opacity: 0.05;
  }
  
  .service-icon {
    width: 70px;
    height: 70px;
    background-color: rgba(0, 113, 227, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
  }
  
  .service-card:hover .service-icon {
    background-color: var(--primary-color);
    color: white;
  }
  
  .service-icon i {
    font-size: 30px;
    color: var(--primary-color);
    transition: var(--transition);
  }
  
  .service-card:hover .service-icon i {
    color: white;
  }
  
  .service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--dark-color);
  }
  
  .service-card p {
    color: var(--gray-color);
    margin-bottom: 20px;
  }
  
  .learn-more {
    color: var(--primary-color);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
  }
  
  .learn-more i {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .learn-more:hover i {
    transform: translateX(5px);
  }
  
  /* About Section */
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
  }
  
  .about-content p {
    margin-bottom: 20px;
    color: var(--gray-color);
    font-size: 1.05rem;
  }
  
  .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 40px;
  }
  
  .stat-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
    text-align: center;
    transition: var(--transition);
  }
  
  .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
  }
  
  .stat-label {
    color: var(--gray-color);
    font-size: 0.9rem;
  }
  
  .image-container {
    position: relative;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transform-style: preserve-3d;
    transform: perspective(1000px);
  }
  
  .image-container img {
    width: 100%;
    height: auto;
    display: block;
    transform: translateZ(20px);
  }
  
  .image-shape {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 150px;
    height: 150px;
    background: var(--gradient-primary);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    z-index: -1;
  }
  
  .bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(0, 113, 227, 0.05), transparent 70%);
    z-index: 0;
  }
  
  /* Portfolio Section */
  .portfolio-filter {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
    gap: 10px;
  }
  
  .filter-btn {
    padding: 10px 25px;
    background-color: transparent;
    border: 1px solid var(--light-gray);
    border-radius: 30px;
    cursor: pointer;
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .filter-btn:hover, .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .portfolio-item {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--card-shadow);
  }
  
  .portfolio-image {
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transform: perspective(1000px);
  }
  
  .portfolio-image img {
    transition: transform 0.5s ease;
    width: 100%;
    height: 250px;
    object-fit: cover;
  }
  
  .portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 113, 227, 0.6));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
  }
  
  .portfolio-item:hover .portfolio-overlay {
    opacity: 1;
  }
  
  .portfolio-item:hover .portfolio-image img {
    transform: scale(1.1);
  }
  
  .portfolio-info {
    text-align: center;
    color: white;
    padding: 20px;
    transform: translateY(20px);
    transition: transform 0.4s ease;
  }
  
  .portfolio-item:hover .portfolio-info {
    transform: translateY(0);
  }
  
  .portfolio-info h3 {
    font-size: 1.3rem;
    margin-bottom: 5px;
  }
  
  .portfolio-info p {
    margin-bottom: 15px;
    opacity: 0.8;
  }
  
  .view-project {
    display: inline-block;
    padding: 8px 20px;
    background-color: white;
    color: var(--primary-color);
    border-radius: 30px;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .view-project:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
  }
  
  /* Contact Section */
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .info-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
  }
  
  .info-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 25px;
    box-shadow: var(--card-shadow);
    display: flex;
    align-items: flex-start;
    transition: var(--transition);
  }
  
  .info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  
  .info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(0, 113, 227, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
  }
  
  .info-icon i {
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  .info-content h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-color);
  }
  
  .info-content p {
    color: var(--gray-color);
    font-size: 0.95rem;
  }
  
  .form-card {
    background-color: white;
    border-radius: var(--border-radius);
    padding: 40px;
    box-shadow: var(--card-shadow);
  }
  
  .form-group {
    margin-bottom: 25px;
    position: relative;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--dark-color);
  }
  
  .form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--light-gray);
    border-radius: var(--border-radius);
    font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
    transition: var(--transition);
    background-color: var(--light-color);
  }
  
  .form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 113, 227, 0.2);
    background-color: white;
  }
  
  .submit-button {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
  }
  
  .bg-gradient-alt {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at bottom left, rgba(0, 113, 227, 0.05), transparent 70%);
    z-index: 0;
  }
  
  /* Footer */
  #footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
  }
  
  .footer-about h3, .footer-links h3, .footer-contact h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
    color: white;
  }
  
  .footer-about h3::after, .footer-links h3::after, .footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer-about p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 25px;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
  }
  
  .footer-links ul li {
    margin-bottom: 12px;
  }
  
  .footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
  }
  
  .footer-links ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
  }
  
  .footer-contact ul li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
  }
  
  .footer-contact ul li i {
    margin-right: 10px;
    color: var(--primary-color);
  }
  
  .footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
  }
  
  /* Responsive Styles */
  @media (max-width: 1200px) {
    .hero-content {
      flex-direction: column;
      text-align: center;
      padding: 100px 0;
    }
    
    .hero-text {
      margin-bottom: 50px;
    }
    
    .hero-buttons {
      justify-content: center;
    }
    
    .hero-visual {
      width: 400px;
      height: 400px;
    }
  }
  
  @media (max-width: 992px) {
    .section {
      padding: 80px 0;
    }
    
    .section-title {
      font-size: 2rem;
    }
    
    .about-grid, .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
    
    .footer-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
    }
    
    .hamburger {
      display: block;
    }
    
    .hamburger.active span:nth-child(1) {
      transform: rotate(45deg) translate(5px, 5px);
    }
    
    .hamburger.active span:nth-child(2) {
      opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .nav-links.active {
      display: flex;
      flex-direction: column;
      position: absolute;
      top: 70px;
      left: 0;
      width: 100%;
      background-color: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      padding: 20px;
      box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    }
    
    .nav-links.active li {
      margin: 15px 0;
    }
    
    .hero-text h1 {
      font-size: 3rem;
    }
    
    .info-cards {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 576px) {
    .hero-text h1 {
      font-size: 2.5rem;
    }
    
    .hero-visual {
      width: 300px;
      height: 300px;
    }
    
    .sphere-container {
      width: 200px;
      height: 200px;
    }
    
    .services-grid, .portfolio-grid {
      grid-template-columns: 1fr;
    }
    
    .footer-grid {
      grid-template-columns: 1fr;
    }
    
    .form-card {
      padding: 30px 20px;
    }
  }