@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700;800;900&display=swap");

body {
    font-family: "Inter", sans-serif;
}

/* Content Image Styles */
.content-image {
    border-radius: 24px;
    object-fit: cover;
}

@media all and (min-width: 768px) {
    .content-image {
        width: 500px;
        height: 500px;
        margin-right: 2rem !important;
        float: left;
    }
}

@media all and (max-width: 768px) {
    .content-image {
        height: 350px;
        margin-bottom: 1rem !important;
    }
}

.clearfix::after {
    content: "";
    display: table;
    clear: both;
}

/* Content Typography - Modern theme */
.content h1 {
    font-size: 2.5rem !important;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem !important;
    color: #0f172a;
    font-family: "Playfair Display", serif;
}

.content h2,
.content h3,
.content h4,
.content h5,
.content h6 {
    font-size: 1.75rem !important;
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 1rem !important;
    color: #0f172a;
    font-family: "Playfair Display", serif;
}

.content p {
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1.5rem !important;
    color: #475569;
}

.content ul,
.content ol {
    margin-bottom: 1.5rem !important;
    margin-left: 1.5rem;
    color: #475569;
}

.content ul {
    list-style-type: disc;
}

.content ol {
    list-style-type: decimal;
}

.content li {
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.content a {
    color: #16a34a;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}

.content a:hover {
    color: #15803d;
}

.content blockquote {
    font-size: 1.25rem;
    font-style: italic;
    border-left: 4px solid #22c55e;
    padding-left: 1.5rem;
    margin: 2rem 0 !important;
    color: #475569;
}

.content strong {
    font-weight: 600;
    color: #0f172a;
}

.content em {
    font-style: italic;
}

.content img {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    border-radius: 16px;
}

.content hr {
    border: none;
    border-top: 1px solid #e2e8f0;
    margin: 2.5rem 0;
}

/* Phone Input - Modern theme */
.iti {
    width: 100%;
}

.iti__country-list {
    background-color: #fff;
    border-color: #e2e8f0;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.iti__country:hover {
    background-color: #f1f5f9;
}

.iti__selected-dial-code {
    color: #0f172a;
}

/* Scrollbar - Modern theme */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Selection - Green theme */
::selection {
    background-color: #22c55e;
    color: #fff;
}

/* Focus states */
*:focus {
    outline: none;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

/* Dropdown menu hover state */
.dropdown:hover .dropdown-menu {
    display: block;
}

/* Hero fade animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Glass card effect */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}
