#landing_page{
   padding-top: 0;
}
.landing_page{
   width: 100%;
   height: 100vh;

   display: flex;
   flex-direction: column;
   align-items: start;
   justify-content: center ;
}
.landing_page p{
   font-size: 1.2rem;
}
.landing_page::before {
   content: "";
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: radial-gradient(circle at center, rgba(230, 57, 70, 0.05) 0%, transparent 70%);
   z-index: -1;
}
.social-icons {
   display: flex;
   margin-top: 2rem;
}
.social-icons a {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 50px;
   height: 50px;
   border: 2px solid var(--accent-red);
   margin-right: 15px;
   color: var(--accent-red);
   font-size: 1.3rem;
   transition: var(--transition);
   text-decoration: none;
}
.social-icons a:hover {
   background: var(--accent-red);
   color: var(--text-light);
   transform: translateY(-5px);
}
@media screen and (max-width: 649px){
   #landing_page{
      padding: 5%;
   }
   #landing_page h1{
      font-size: 2.5rem;
   }
   .social-icons a{
      width: 35px;
      height: 35px;

      font-size: 1rem;
   }
}
/* Pricing section */
#pricing {
   background-color: var(--card-bg);
}
.pricing-title {
   text-align: center;
   margin-bottom: 3rem;
}
.pricing-title h2::after {
   left: 50%;
   transform: translateX(-50%);
}
.pricing-cards {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
   gap: 30px;
   margin-top: 50px;
}
.pricing-card {
   background: linear-gradient(145deg, #131319, #0f0f14);
   border: 1px solid rgba(230, 57, 70, 0.2);
   padding: 40px 30px;
   text-align: center;
   transition: var(--transition);
   position: relative;
   overflow: hidden;
}
.pricing-card:hover {
   transform: translateY(-10px);
   border-color: var(--accent-red);
   box-shadow: 0 10px 30px rgba(230, 57, 70, 0.15);
}
.pricing-card.popular::before {
   content: "POPULAR";
   position: absolute;
   top: 0;
   right: 0;
   background: var(--accent-red);
   color: var(--text-light);
   font-size: 0.7rem;
   padding: 5px 15px;
   font-weight: bold;
   text-transform: uppercase;
   letter-spacing: 1px;
}
.pricing-card h3 {
   font-size: 1.5rem;
   margin-bottom: 15px;
   color: var(--text-light);
}
.price {
   font-family: 'Oswald', sans-serif;
   font-size: 2.5rem;
   color: var(--accent-red);
   margin-bottom: 25px;
   display: block;
}
.price span {
   font-size: 1rem;
   color: var(--text-gray);
}
.features {
   list-style: none;
   margin-bottom: 30px;
   text-align: left;
}
.features li {
   color: var(--text-gray);
   margin-bottom: 10px;
   padding-left: 25px;
   position: relative;
}
.features li::before {
   content: "✓";
   color: var(--accent-red);
   position: absolute;
   left: 0;
   font-weight: bold;
}
.features li.disabled {
   opacity: 0.5;
}
.features li.disabled::before {
   content: "✕";
}
.pricing-btn {
   background: transparent;
   color: var(--accent-red);
   border: 2px solid var(--accent-red);
   padding: 12px 30px;
   font-family: 'Oswald', sans-serif;
   font-size: 1rem;
   text-transform: uppercase;
   cursor: pointer;
   transition: var(--transition);
   width: 100%;
   display: block;
}
.pricing-btn:hover {
   background: var(--accent-red);
   color: var(--text-light);
}
.pricing-card.popular .pricing-btn {
   background: var(--accent-red);
   color: var(--text-light);
}
.pricing-card.popular .pricing-btn:hover {
   background: transparent;
   color: var(--accent-red);
}
/* Responsive pricing */
@media (max-width: 992px) {
   .pricing-cards {
      grid-template-columns: repeat(2, 1fr);
   }
}
@media (max-width: 768px) {
   .pricing-cards {
      grid-template-columns: 1fr;
   }
}
/* Additional services pricing table */
.additional-services-title {
   text-align: center;
   margin-bottom: 3rem;
}
.additional-services-title h2::after {
   left: 50%;
   transform: translateX(-50%);
}
.services-table {
   width: 100%;
   border-collapse: collapse;
   margin-top: 30px;
   background: var(--card-bg);
   overflow: hidden;
   box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.services-table th,
.services-table td {
   padding: 20px;
   text-align: left;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.services-table th {
   background-color: rgba(230, 57, 70, 0.1);
   color: var(--text-light);
   font-family: 'Oswald', sans-serif;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 1px;
}
.services-table tr:last-child td {
   border-bottom: none;
}
.services-table tr:hover {
   background-color: rgba(230, 57, 70, 0.05);
}
.service-name {
   font-weight: 600;
   color: var(--text-light);
}
.service-description {
   color: var(--text-gray);
   font-size: 0.9rem;
   margin-top: 5px;
}
.service-price {
   color: var(--accent-red);
   font-weight: 600;
   white-space: nowrap;
}
/* Responsive table */
@media (max-width: 768px) {
   .services-table {
      display: block;
      overflow-x: auto;
   }
   .services-table th,
   .services-table td {
      padding: 15px 10px;
   }
}
/*About me section*/
#about_me{
   background-color: var(--card-bg);
}
.about_me .wrapper{
   width: 100%;

   display: flex;
   justify-content: space-between;
   align-items: center;
}
.about_me.reverse .section-title{
   text-align: right;
}
.about_me.reverse .section-title h2::after{
   left: auto;
   right: 0;
}
.about_me .wrapper.reverse{
   flex-direction: row-reverse;
}
.about_me .wrapper aside.text{
   width: 50%;
}
.about_me .wrapper aside.text p{
   font-size: 1.2rem;
   color: var(--text-gray);
   margin-bottom: 3%;
}
.about_me .wrapper figure.image{
   width: 40%;
}
.about_me .wrapper figure.image img{
   width: 100%;
}
@media screen and (max-width: 900px){
   .about_me .wrapper,
   .about_me.reverse .wrapper{
      flex-direction: column;
   }
   .about_me .wrapper aside.text{
      width: 100%;
   }
   .about_me .wrapper figure.image{
      width: 100%;
      margin-top: 5%;
   }
   .about_me.reverse .section-title{
      text-align: left;
   }
   .about_me.reverse .section-title h2::after{
      left: 0;
      right: auto;
   }
}
@media screen and (max-width: 500px){
   .about_me .wrapper aside.text p{
      font-size: 0.8rem;
   }
}