body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: linear-gradient(120deg, #f0e8e0 0%, #e8dccf 100%);
    color: #222;
    min-height: 100vh;
}
header {
    background: #faf7f3;
    box-shadow: 0 2px 16px rgba(80,60,40,0.06);
    padding: 2.2rem 0 1.2rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-left: 2rem;
    padding-right: 2rem;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    position: relative;
}

.header-paw-print {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    font-size: 1rem;
    height: 5em;
    width: 6em;
    color: #a98c6d;
    opacity: 0.6;
    z-index: 1;
}
.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 5em; 
    width: 4.5em; 
    vertical-align: middle;
}

.logo-name {
    height: 3.5em; 
    width: 18em;
    vertical-align: middle;
}
.social-links {
    display: flex;
    gap: 2rem;
    margin-right: 1em;
}
.social-link{
    color: #bfa07a;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-size: 1.5rem;
}

.social-link:hover {
    color: #8b6f4d;
    transform: translateY(-2px);
    text-shadow: 0 2px 4px rgba(139,111,77,0.2);
}
.hero {
    padding: 5rem 1rem 2.5rem 1rem;
    background: linear-gradient(120deg, #fbeee6 0%, #fff 100%);
    text-align: center;
    border-radius: 32px;
    margin: 2rem auto 0 auto;
    max-width: 700px;
    box-shadow: 0 4px 24px rgba(80,60,40,0.07);
    position: relative;
}
.paw-print {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 4rem;
    color: #a98c6d;
    opacity: 0.7;
    transform: rotate(15deg);
}
.hero h1 {
    font-size: 2.7rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #4e3c2a;
}
.hero p {
    font-size: 1.18rem;
    margin-bottom: 2.2rem;
    color: #6d5c4a;
}
.cta-btn {
    background: linear-gradient(90deg, #ba986e 0%, #a98c6d 100%);
    color: #fff;
    padding: 1rem 2.7rem;
    border: none;
    border-radius: 30px;
    font-size: 1.13rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(191,160,122,0.08);
    transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
    letter-spacing: 0.5px;
}
.cta-btn:hover {
    background: linear-gradient(90deg, #a98c6d 0%, #bfa07a 100%);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 18px rgba(191,160,122,0.13);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-btn.secondary {
    background: transparent;
    color: #4e3c2a;
    border: 2px solid #4e3c2a;
    text-decoration: none;
    display: inline-block;
}

.cta-btn.secondary:hover {
    background: #4e3c2a;
    color: #fff;
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 18px rgba(78,60,42,0.2);
}
.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    padding: 0 1rem;
}
.feature {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    padding: 2rem 1.5rem;
    max-width: 320px;
    flex: 1 1 250px;
    text-align: center;
}
.feature h3 {
    margin-top: 0;
    color: #6f4e37;
}
.feature p {
    color: #6d5c4a;
    font-size: 1.05rem;
    line-height: 1.6;
}
.image-carousel {
    position: relative;
    margin-top: 1.5rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.carousel-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 600%;
}
.carousel-image {
    width: 16.666%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    cursor: pointer;
    font-size: 16px;
    color: #a98c6d;
    transition: all 0.2s;
}
.carousel-nav:hover {
    background: rgba(255,255,255,1);
    color: #8b6f4d;
}
.carousel-prev {
    left: 8px;
}
.carousel-next {
    right: 8px;
}
footer {
    text-align: center;
    padding: 2.2rem 1rem 2.5rem 1rem;
    background: #faf7f3;
    color: #bfa07a;
    font-size: 1rem;
    margin-top: 2.5rem;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    box-shadow: 0 -2px 12px rgba(191,160,122,0.06);
}
@media (max-width: 700px) {
    header {
    padding: 1.5rem 1rem;
    flex-direction: column;
    gap: 1rem;
    }
    
    .logo {
    justify-content: center;
    }
    
    .logo-img {
    height: 2.5em !important;
    width: 4em !important;
    }
    
    .logo-name {
    height: 2.5em !important;
    width: 12em !important;
    }
    
    .social-links {
    margin-right: 0;
    gap: 1.5rem;
    }
    
    .social-link {
    font-size: 1.1rem;
    }
    
    .header-paw-print {
    display: none;
    }
    
    .features {
    flex-direction: column;
    gap: 1.5rem;
    margin: 2rem 0.5rem 1rem 0.5rem;
    }
    
    .feature {
    padding: 1.5rem 1rem;
    max-width: none;
    }
    
    .feature h3 {
    font-size: 1.1rem;
    }
    
    .feature p {
    font-size: 0.95rem;
    }
    
    .hero {
    padding: 3rem 0.5rem 1.5rem 0.5rem;
    max-width: 98vw;
    margin: 1rem auto 0 auto;
    }
    
    .hero h1 {
    font-size: 2rem;
    }
    
    .hero p {
    font-size: 1rem;
    max-width: 100%;
    }
    
    .paw-print {
    font-size: 3rem;
    top: 10px;
    right: 15px;
    }
    
    .cta-buttons {
    flex-direction: column;
    align-items: center;
    }
    
    .cta-btn {
    width: 100%;
    max-width: 250px;
    }
    
    .carousel-image {
    height: 160px;
    }
    
    .carousel-nav {
    width: 28px;
    height: 28px;
    font-size: 14px;
    }
}
@media (min-width: 701px) and (max-width: 1024px) {
    header {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
    gap: 1.2rem;
    }
    .logo {
    justify-content: center;
    width: 100%;
    }
    .main-nav {
    justify-content: center;
    width: 100%;
    }
    
    .logo img {
    margin-top: -1em;
    height: 3em !important;
    width: auto !important;
    }

    .logo img:last-child {
    width: 13em !important;
    }
    
    .social-links {
    margin-top: -1em;
    gap: 1.5rem;
    margin-right: 2em;
    }
    
    .social-link {
    font-size: 1.3rem;
    }
    
    .header-paw-print {
    height: 4em;
    width: 5em;
    }
    
    .hero {
    max-width: 90vw;
    padding: 4rem 1.5rem 2rem 1.5rem;
    }
    
    .hero h1 {
    font-size: 2.3rem;
    }
    
    .hero p {
    font-size: 1.1rem;
    max-width: 450px;
    }
    
    .paw-print {
    font-size: 3.5rem;
    top: 15px;
    right: 25px;
    }
    
    .features {
    gap: 1.8rem;
    margin: 3rem 1rem 2rem 1rem;
    }
    
    .feature {
    padding: 2rem 1.5rem;
    max-width: 300px;
    }
    
    .feature h3 {
    font-size: 1.2rem;
    }
    
    .feature p {
    font-size: 1rem;
    }
    
    .carousel-image {
    height: 180px;
    }
}

@media (max-width: 400px) {
    .logo-name{
      height: 5.5em;
      width: 15em;
    }
  
    .logo-img{
        height: 3em;
        width: 4em;
        margin-left: 1em;
    }
  
    .hamburger{
        margin-left: 0.5em;
    }
    .logo{
        margin-right: 1em;
    }
}